SpreadJS Documentation
GC.Spread.Sheets Namespace / CellTypes type / CheckBoxList Method
In This Topic
    CheckBoxList Method
    In This Topic
    Represents an editable CheckBoxList cell.
    Syntax
    var value; // Type: any
    value = GC.Spread.Sheets.CellTypes.CheckBoxList();
    function CheckBoxList() : any;
    Example
    //This example creates a CheckBoxList cell.
    var cellType2 = new GC.Spread.Sheets.CellTypes.CheckBoxList();
    cellType2.items([{text:"a",value:1},{text:"b",value:2},{text:"c",value:3}]);
    activeSheet.getCell(2, 2).cellType(cellType2);
    See Also

    Reference

    CellTypes type