2013-05-13 66 views
0

默認情況下,標記爲數字的數據源中的所有字段都將使其單元格填充初始值0.我希望在創建網格時將單元格設爲空而不將字段轉換爲字符串。Kendo網格初始化數字單元格

通過調用grid.addRow()添加下面的行;

enter image description here

$("#SALE_01_DIV_GRID") 
       .kendoGrid(
        { 
         ... 
         dataSource : { 
          schema : { 
           data: "Data", 
           total: "Total", 
           model: { 
            fields : { 
             SEQ : { type : "string", editable : false}, 
             SAP_CD : { type : "string" }, 
             OLD_CD : { type : "string", editable : false }, 
             INV_NAME : { type : "string", editable : false }, 
             LINE_NAME : { type : "string", editable : false }, 
             COLOR : { type : "string", editable : false }, 
             DESCNT : { type : "string", editable : false }, 
             COMMISSION : { type : "string", editable : false }, 
             SAVE_YN : { type : "string", editable : false }, 
             ERR_MSG : { type : "string", editable : false }, 
             PAN_QTY : { type : "number" }, 
             SDANGA : { type : "number", editable : false }, 
             PANAMT : { type : "number", editable : false }, 
             JDANGA : { type : "number", editable : false }, 
             JAMT : { type : "number", editable : false }, 
             CURRENT_STOCK : { type : "number", editable : false }, 
             SUPPLY_DANGA : { type : "number", editable : false }, 
             SUPPLY_AMT : { type : "number", editable : false } 
            } 
           } 
          } 
         }, 

文檔沒有產生任何結果。我怎樣才能做到這一點?

回答

1

在您的模型定義中包括defaultValue。示例:

SDANGA:{type:「number」,defaultValue:「」},