Class ClickableTextCell

  • All Implemented Interfaces:
    Cell<java.lang.String>

    public class ClickableTextCell
    extends AbstractSafeHtmlCell<java.lang.String>
    A Cell used to render text. Clicking on the cell causes its ValueUpdater to be called.
    • Method Detail

      • onBrowserEvent

        public void onBrowserEvent​(Cell.Context context,
                                   Element parent,
                                   java.lang.String value,
                                   NativeEvent event,
                                   ValueUpdater<java.lang.String> valueUpdater)
        Description copied from class: AbstractCell
        Handle a browser event that took place within the cell. The default implementation returns null.

        If you override this method to add support for events, remember to pass the event types that the cell expects into the constructor.

        Specified by:
        onBrowserEvent in interface Cell<java.lang.String>
        Overrides:
        onBrowserEvent in class AbstractCell<java.lang.String>
        Parameters:
        context - the Cell.Context of the cell
        parent - the parent Element
        value - the value associated with the cell
        event - the native browser event
        valueUpdater - a ValueUpdater, or null if not specified
      • onEnterKeyDown

        protected void onEnterKeyDown​(Cell.Context context,
                                      Element parent,
                                      java.lang.String value,
                                      NativeEvent event,
                                      ValueUpdater<java.lang.String> valueUpdater)
        Description copied from class: AbstractCell
        Called when the user triggers a keydown event with the ENTER key while focused on the cell. If your cell interacts with the user, you should override this method to provide a consistent user experience. Your widget must consume keydown events for this method to be called.
        Overrides:
        onEnterKeyDown in class AbstractCell<java.lang.String>
        Parameters:
        context - the Cell.Context of the cell
        parent - the parent Element
        value - the value associated with the cell
        event - the native browser event
        valueUpdater - a ValueUpdater, or null if not specified