Kendo网格初始化数字单元格

时间:2013-05-13 00:17:33

标签: javascript jquery html kendo-ui kendo-grid

默认情况下,数据源中标记为数字的所有字段的单元格都将填充初始值0.我希望在创建网格时将单元格设置为空,而不将字段转换为字符串。

通过调用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 个答案:

答案 0 :(得分:1)

在您的模型定义中包含defaultValue。例如:

SDANGA:{type:“number”,defaultValue:“”},