本帖最后由 344860032 于 2017-10-31 09:09 编辑
用的10.3.1 js版本
var comboxCell = new GC.Spread.Sheets.CellTypes.ComboBox();
comboxCell.items([{ text: "苹果", value: 0 }, { text: "梨子", value: 1 }, { text: "香蕉", value: 2 }, { text: "芒果", value: 3 }]).editable(false);
comboxCell.editorValueType(GC.Spread.Sheets.CellTypes.EditorValueType.text);
sheet.getCell(rowIndex, cellIndex + 3).cellType(comboxCell).value(0);
效果:
|
|