SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.autoFill property
AutoFill object which manages auto fill related settings.
- Getter
- function autoFill(): AutoFill
- Setter
- function setAutoFill(value: Object|AutoFill)
- Note
- Calling Setter means to change the properties of internal AutoFill object which has been created when initializing the grid, rather than to change it to a new object being transferred by parameter.
Code -1
grid.autoFill().setEnabled(true);
// or
grid.setOptions({
autoFill: {
enabled: true
}
});
// Since enabled is the basic property of AutoFill
grid.setAutoFill(true);
- See Also
- AutoFill
- Examples
- Column Footer