Package io.jmix.ui.widget
Class JmixEnhancedTable.TableCellClickEvent
java.lang.Object
java.util.EventObject
io.jmix.ui.widget.JmixEnhancedTable.TableCellClickEvent
- All Implemented Interfaces:
Serializable
- Enclosing interface:
- JmixEnhancedTable
An event is fired when the user clicks inside the table cell.
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected final Object
protected final boolean
protected final Object
Fields inherited from class java.util.EventObject
source
-
Constructor Summary
ConstructorDescriptionTableCellClickEvent
(JmixEnhancedTable table, Object itemId, Object columnId, boolean isText) Constructor for a table cell click event. -
Method Summary
Methods inherited from class java.util.EventObject
getSource, toString
-
Field Details
-
itemId
-
columnId
-
isText
protected final boolean isText
-
-
Constructor Details
-
TableCellClickEvent
Constructor for a table cell click event.- Parameters:
table
- the Table from which this event originatesitemId
- id of the entity instance represented by the clicked rowcolumnId
- id of the clicked Table columnisText
-true
if the user clicks on text inside the table cell,false
otherwise
-
-
Method Details
-
getItemId
- Returns:
- id of the entity instance represented by the clicked row
-
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
-