当您按下回车键或移出单元格(模糊)时,我试图让我的网格保存更改,而不必使用网格工具栏中的保存按钮。
我无法让它正常工作,我的 PHP/SQL 工作正常,所以我确定网格有问题。
这是我的代码:
$("#grid").kendoGrid({
dataSource: {
transport: {
read: WEBROOT+"admin/fetch-toppers",
update: {
url: WEBROOT+"admin/update-topper",
type: "POST"
}
},
error: function(e)
{
alert(e.responseText);
},
schema: {
data: "data",
model: {
id: 'id',
fields: {
"id": {nullable: true},
"Date": {editable: false},
"name": {editable: false},
"price": {editable: true}
}
}
}
},
columns: [{field: "Date", width: 105}, {field: "name", title: "Topper"}, {field: "price", title: "Price", width: 125}],
height: 550,
filterable: true,
sortable: true,
pageable: true,
editable: true,
navigatable: true,
edit: function()
{
//this.saveChanges()
}
});
我尝试了很多事情和不同的事件,但没有任何效果。
我怎样才能让它保存模糊的单元格值?