Announcement

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

    Exclude FormItemIcon from Tab Order

    Hi Iso,

    is there a clean way to exclude them from Tab order?

    If not, is there a dirty way?

    Why are they included at all? In my understanding they're just passive elements...

    Cya,

    * GWT Rocks! * SmartGWT Rocks Even Harder! * GWT 2.0.4,
    SmartGWT PRO 2.3, JRE 1.6.0_20, Eclipse 3.6.1 *
    * Xcode 3.2.4 * iOS 3.2 (Base OS) *

    #2
    You generally shouldn't exclude them from tab order, or they will be inaccessible to keyboard navigation. However, for special cases, you can set a tabIndex of -1 to exclude the item from navigation.

    Comment


      #3
      Iso,

      that's what I was instinctively looking for, however there's no setTabIndex() or similar for a FormItemIcon, maybe not yet available on S'GWT side?

      Ekki

      * GWT Rocks! * SmartGWT Rocks Even Harder! * GWT 2.0.4,
      SmartGWT PRO 2.3, JRE 1.6.0_20, Eclipse 3.6.1 *
      * Xcode 3.2.4 * iOS 3.2 (Base OS) *

      Comment


        #4
        Quite right, use setAttribute("tabIndex", -1) to set it; we'll add an official setter.

        Comment

        Working...
        X