React Data GridBaseEditor
Members
BaseEditor
Source codebaseEditor.BaseEditor
_closeCallback
Source codebaseEditor._closeCallback : function
Callback to call after closing editor.
cellProperties
Source codebaseEditor.cellProperties : object
Object containing the cell's properties.
col
Source codebaseEditor.col : number
Visual column index.
hot
Source codebaseEditor.hot : Handsontable
A reference to the source instance of the Handsontable.
originalValue
Source codebaseEditor.originalValue : *
Original cell's value.
prop
Source codebaseEditor.prop : number | string
Column property name or a column index, if datasource is an array of arrays.
row
Source codebaseEditor.row : number
Visual row index.
state
Source codebaseEditor.state : string
Editor's state.
TD
Source codebaseEditor.TD : HTMLTableCellElement
Currently rendered cell's TD element.
Methods
beginEditing
Source codebaseEditor.beginEditing(newInitialValue, event)
Begins editing on a highlighted cell and hides fillHandle corner if was present.
Param | Type | Description |
---|---|---|
newInitialValue | * | The initial editor value. |
event | Event | The keyboard event object. |
cancelChanges
Source codebaseEditor.cancelChanges()
Finishes editing without singout saving value.
close
Source codebaseEditor.close()
Required method to close editor.
discardEditor
Source codebaseEditor.discardEditor(result)
Verifies result of validation or closes editor if user's cancelled changes.
Param | Type | Description |
---|---|---|
result | boolean undefined | If false and the cell using allowInvalid option, then an editor won't be closed until validation is passed. |
enableFullEditMode
Source codebaseEditor.enableFullEditMode()
Switch editor into full edit mode. In this state navigation keys don't close editor. This mode is activated automatically after hit ENTER or F2 key on the cell or while editing cell press F2 key.
extend
Source codebaseEditor.extend() ⇒ function
Fallback method to provide extendable editors in ES5.
finishEditing
Source codebaseEditor.finishEditing(restoreOriginalValue, ctrlDown, callback)
Finishes editing and start saving or restoring process for editing cell or last selected range.
Param | Type | Description |
---|---|---|
restoreOriginalValue | boolean | If true, then closes editor without saving value from the editor into a cell. |
ctrlDown | boolean | If true, then saveValue will save editor's value to each cell in the last selected range. |
callback | function | The callback function, fired after editor closing. |
getEditedCell
Source codebaseEditor.getEditedCell() ⇒ HTMLTableCellElement | null
Gets HTMLTableCellElement of the edited cell if exist.
getEditedCellRect
Source codebaseEditor.getEditedCellRect() ⇒ Object | undefined
Gets the object that provides information about the edited cell size and its position relative to the table viewport.
The rectangle has six integer properties:
top
The top position relative to the table viewportstart
The left (or right in RTL) position relative to the table viewportwidth
The cell's current width;maxWidth
The maximum cell's width after which the editor goes out of the table viewportheight
The cell's current height;maxHeight
The maximum cell's height after which the editor goes out of the table viewport
getEditedCellsLayerClass
Source codebaseEditor.getEditedCellsLayerClass() ⇒ string
Gets className of the edited cell if exist.
getValue
Source codebaseEditor.getValue()
Required method to get current value from editable element.
init
Source codebaseEditor.init()
Initializes an editor's intance.
isInFullEditMode
Source codebaseEditor.isInFullEditMode() ⇒ boolean
Checks if editor is in full edit mode.
isOpened
Source codebaseEditor.isOpened() ⇒ boolean
Returns information whether the editor is open.
isWaiting
Source codebaseEditor.isWaiting() ⇒ boolean
Returns information whether the editor is waiting, eg.: for async validation.
open
Source codebaseEditor.open()
Required method to open editor.
prepare
Source codebaseEditor.prepare(row, col, prop, td, value, cellProperties)
Prepares editor's meta data.
Param | Type | Description |
---|---|---|
row | number | The visual row index. |
col | number | The visual column index. |
prop | number string | The column property (passed when datasource is an array of objects). |
td | HTMLTableCellElement | The rendered cell element. |
value | * | The rendered value. |
cellProperties | object | The cell meta object (see Core#getCellMeta). |
saveValue
Source codebaseEditor.saveValue(value, ctrlDown)
Saves value from editor into data storage.
Param | Type | Description |
---|---|---|
value | * | The editor value. |
ctrlDown | boolean | If true , applies value to each cell in the last selected range. |
setValue
Source codebaseEditor.setValue()
Required method to set new value into editable element.