I've defined this table:

      var dm = new qx.ui.table.model.Simple();
      dm.setColumns(["value"]);
      dm.setEditable(false);
      dm.setColumnSortable(0, false);
      this.menuItemTable = new qx.ui.table.Table(dm);
      this.menuItemTable.getContainerElement().setAttribute("id",
                                                            "top_list");
      this.menuItemTable.set({ height: 260,
                               minHeight: 100,
                               width: 278,
                               focusable: true,  // ?
                               columnVisibilityButtonVisible: false,
                               statusBarVisible: false,
                               showCellFocusIndicator: true,
                               tabIndex: 4,
                            });
      this.menuItemTable.setColumnWidth(0,284);
      this.menuItemTable.getSelectionModel().addListener("changeSelection",
                                  this.menuItemTableChangeSelection, this);
      var tabable = this.menuItemTable.isTabable();

If a user is TABbing through the page, they hit widgets at tabindex 1, 2,
and 3, then TABbing again, focus disappears as far as I can tell, and
TABbing again, they get to tabindex 5, 6, 7..., all of my widgets EXCEPT
this one at tabindex 4. After going thru all of my widgets, focus disappears
again for a few TABs, and then starts the cycle from tabindex 1 again - I
think I have a non-visible field or two, so I'm not as concerned about this
second part.

I tried to see why tabindex 4 is never hit, and using the isTabable()
function the var 'tabable' gets the value "null" instead of a Boolean, so
that seems odd. Is there some other property I need to set to be able to TAB
to this table?
Ken
------------------------------------------------------------------------------
Return on Information:
Google Enterprise Search pays you back
Get the facts.
http://p.sf.net/sfu/google-dev2dev
_______________________________________________
qooxdoo-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel

Reply via email to