| org.itsnat.comp.ItsNatTableCellEditor
All known Subclasses: org.itsnat.impl.comp.html.editor.ItsNatHTMLTableCellEditorDefaultImpl,
getTableCellEditorComponent | public ItsNatComponent getTableCellEditorComponent(ItsNatTable table, int row, int column, Object value, boolean isSelected, Element cellContentElem)(Code) | | Returns the component used to edit in place the table cell value.
Default implementation uses a
org.itsnat.comp.html.ItsNatHTMLInputText (text not formatted version) to edit
the table cell value.
Default implementation ignores isSelected parameter.
Parameters: table - the table component, may be used to provide contextual information. Default implementation ignores it. Parameters: row - the cell row. Parameters: column - the cell column. Parameters: value - the value to edit (initial value). Parameters: isSelected - true if the cell is selected. Parameters: cellContentElem - the table cell content element to render the value into. Is a hint, if provided should be obtained by calling table.getItsNatTableUI().getCellContentElement(row,column) . the component used to edit in place the table cell value. Current implementation of tables does nothing with this component and may be null (is not mandatory to use a single component as an editor). See Also: ItsNatTable.setItsNatTableCellEditor(ItsNatTableCellEditor) |
|
|