SpreadJS Documentation
ComboBoxCellType Constructor
Represents an editable combo box cell.
Syntax
var instance = new GcSpread.Sheets.ComboBoxCellType();
function ComboBoxCellType() : ComboBoxCellType;
Example
This example creates a combo cell.
var cellType2 = new GcSpread.Sheets.ComboBoxCellType(); 
cellType2.items(["a","b","c"]); 
activeSheet.getCell(2, 2).cellType(cellType2);
activeSheet.allowEditorReservedLocations(false);
See Also

Reference

ComboBoxCellType class

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.