2013-10-24 22 views

回答

0

似乎spreadjs可以設置複選框,組合框和超鏈接到單元格,也許是你想要的。

0

獲取或設置單元的formatter

的Javascript(用法)

var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea); 
var returnValue; // Type: object 
returnValue = instance.formatter(value); 

的Javascript(規格)

function formatter( 
    value : object 
) : object; 

參數

值 信元格式化字符串對象

返回值

信元格式化對象

activeSheet.getCell(1,1).formatter("0.000%"); 

它是一個字符串。

如需更多幫助,請參閱

http://help.grapecity.com/spread/SpreadJSWeb/cellformat.html

相關問題