@quantlab/handsontable
Version:
Spreadsheet-like data grid editor that provides copy/paste functionality compatible with Excel/Google Docs
12 lines (10 loc) • 348 B
JavaScript
import { getEditor } from './../editors';
import { getRenderer } from './../renderers';
import { getValidator } from './../validators';
var CELL_TYPE = 'date';
export default {
editor: getEditor(CELL_TYPE),
// displays small gray arrow on right side of the cell
renderer: getRenderer('autocomplete'),
validator: getValidator(CELL_TYPE)
};