@visualjs/grid
Version:
JavaScript Data Table
13 lines (12 loc) • 440 B
TypeScript
import { CellEditor, CellEditorParams } from "../../grid/cell";
export declare class CheckboxEditor extends CellEditor<{}> {
protected wrapper: HTMLDivElement;
protected checkbox: HTMLDivElement;
protected mark: HTMLSpanElement;
protected value: boolean;
init(param: CellEditorParams<{}>): void;
protected setValue(value: boolean): void;
gui(): HTMLElement;
getValue(): any;
}
export default CheckboxEditor;