Class JmixEnhancedTable.TableCellClickEvent

java.lang.Object
java.util.EventObject
io.jmix.ui.widget.JmixEnhancedTable.TableCellClickEvent
All Implemented Interfaces:
Serializable
Enclosing interface:
JmixEnhancedTable

public static class JmixEnhancedTable.TableCellClickEvent extends EventObject
An event is fired when the user clicks inside the table cell.
See Also:
  • Field Details

    • itemId

      protected final Object itemId
    • columnId

      protected final Object columnId
    • isText

      protected final boolean isText
  • Constructor Details

    • TableCellClickEvent

      public TableCellClickEvent(JmixEnhancedTable table, Object itemId, Object columnId, boolean isText)
      Constructor for a table cell click event.
      Parameters:
      table - the Table from which this event originates
      itemId - id of the entity instance represented by the clicked row
      columnId - id of the clicked Table column
      isText - true if the user clicks on text inside the table cell, false otherwise
  • Method Details

    • getItemId

      public Object getItemId()
      Returns:
      id of the entity instance represented by the clicked row
    • getColumnId

      public Object getColumnId()
      Returns:
      id of the clicked Table column
    • isText

      public boolean isText()
      Returns:
      true if the user clicks on text inside the table cell, false otherwise