Interface TabTraversable

All Known Implementing Classes:
Button, CheckBox, ComboBox, DateEditBox, HtmlContainer, HtmlEdit, ListBox, NumericBox, NumericBoxSpinner, RadioButton, Slider, StringEditBox, TextArea, TextBox, TextComboBox

public interface TabTraversable
Interface facilitating the implementation of behavior to access and mutate a control's tab traversal on a rendered page.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a boolean indicating whether or not the user can navigate to the control using the tab key.
    Sets whether or not the user can navigate to the control using the tab key.
  • Method Details

    • isTabTraversable

      Boolean isTabTraversable()
      Returns a boolean indicating whether or not the user can navigate to the control using the tab key.
      Returns:
      True if user can navigate to control with Tab key, False if not
    • setTabTraversable

      TabTraversable setTabTraversable(Boolean traversable)
      Sets whether or not the user can navigate to the control using the tab key.
      Parameters:
      traversable - Boolean dictating tab traversal. True if control can be navigated to with Tab, False if not.
      Returns:
      The control itself