是否可以在kendo网格中获得组合框的onchange事件。 以下是我的代码。
var status = [
{
"value": 1,
"text": "New"
},{
"value": 2,
"text": "Reject"
},{
"value": 3,
"text": "Under Review"
},{
"value": 4,
"text": "Approved"
}];
$("#grid").kendoGrid({
dataSource: sourceData,
sortable: true,
scrollable: true,
pageable: true,
selectable: "row",
columns: [
{ field: "firstname", title: "Name",template : displayName},
{ field: "email", title: "Email", },
{ field: "invtn_status", title: "Status" , values:status, },
],
editable: true,
});
现在我想更改状态值时更新数据库表中的状态(组合框的onchange事件)。
答案 0 :(得分:0)
您正在搜索change
事件。 Here is the documentation
$("#grid").kendoGrid({
...
change: function(e) {
/* do something */
}
});