CheckboxCell template

This cell type displays checkbox input. This template has disabled edit mode.

Implementation

  • Open CheckboxCell implementation on github

Interface declaration

interface CheckboxCell extends Cell {
    type: 'checkbox';
    checked: boolean;
    checkedText?: string;
    uncheckedText?: string;
}
Property nameTypeProperty description
typecheckboxType of cell template
checkedbooleanCurrent state of checked attribute in input element
checkedText?stringText of “checked text input”, used while getting compatible cell, by default: 1
uncheckedText?stringText of “unchecked text input”, used while getting compatible cell, by default: “ (empty string)