Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Tabbing isn't working properly

    SmartGwt 12.0p (v12.0p_2018-11-24/LGPL_Development_Only)
    Firefox 78.8
    GWT 2.8

    If I set the isModal to true on a window and try tabbing from one TextItem to the next . The tabbing skips every other TextItem. So essentially it tabs twice instead of once everytime I hit the Tab key.

    public class MyApp implements EnryPoint {

    public void onModuleLoad() {

    MyWindow win = new MyWindow();
    win.show();

    }

    }


    public class MyWindow extends Window {

    public MyWindow() {
    DynamicForm form = new DynamicForm();
    TextItem firstname = new TextItem();
    TextItem lastname = new TextItem();
    TextItem comment = new TextItem();
    firstname.setTitle("Name");
    lastname.setTitle("Last Name");
    comment.setTitle("Comment");

    form.setFields(firstname, lastname, comment);

    addItem(form);
    setHeight(500);
    setWIdth(500);
    setIsModal(true);

    }

    }




    #2
    Please retest with an up to date version (see smartclient.com/builds).

    Comment


      #3
      I upgraded to smartgwt-12.1p and that fixed the issue! Thank you.

      Comment

      Working...
      X