FillHandle
Feature
This feature adds a fill handle to a Grid range selection, which when dragged, fills the cells being dragged over with values based on the values in the original selected range. This is similar to functionality normally seen in various spreadsheet applications.
Requires selectionMode.cell to be activated.
This feature is disabled by default
const grid = new Grid({
features : {
fillHandle : true
}
});
This feature will not work properly when Store uses lazyLoad
See also
- CellCopyPaste - Copy/paste cell values
- CellEdit - Inline cell editing
No results
Configs
Configs are options you supply in a configuration object when creating an instance of this class-
Set to
trueto enable the fill range to crop the original selected range. This clears the cells which were a part of the original selected range, but are no longer a part of the smaller range.
Properties
Properties are getters/setters or publicly accessible variables on this class-
Identifies an object as an instance of FillHandle class, or subclass thereof.
-
Identifies an object as an instance of FillHandle class, or subclass thereof.
Functions
Functions are methods available for calling on the class-
abort( )
Aborts an ongoing FillHandle drag operation
-
handleSelection( )internal
Checks selection and sees to it that fill handle and border is drawn. Runs on next animation frame