我试图将数字微调框输入框添加到Kendo UI网格中的列。
由于某种原因,如果我将记录“添加”到dataSource
并更改数值,然后“添加”另一行,那么先前添加的所有行中的值都将设置为1?
$("#add-btn").click(function(){
$("#items-grid").data("kendoGrid").dataSource.add({NAME:"Apples",QTY:1})
})
$("#items-grid").kendoGrid({
height: 300,
columns : [
{
field : "NAME",
title : "Name"
},
{
field : "QTY",
title : "Qty",
width: 140 ,
template: "<input class='numeric' value='#: QTY #' style='width:100%'> </input>"
} ],
noRecords: true,
dataSource: [] ,
dataBound: function() {
this.tbody.find(".numeric").each(function(){
$(this).kendoNumericTextBox({decimals: 0});
});
}
});
请告知
答案 0 :(得分:0)
我的Kendo网格存在的问题是我没有在model
上添加schema
来为QTY
列指定“数字”类型。
否则,内联numericTextBox
的行为不正确
dataSource : new kendo.data.DataSource({
data: [],
schema: {
model: {
fields: {
QTY: { type: "number", validation: { required: true, min: 1} }
}
}
}
}),