单击取消后,Kendo网格弹出编辑器不再打开
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单击取消后,Kendo网格弹出编辑器不再打开相关的知识,希望对你有一定的参考价值。
我有一个带有自定义弹出编辑器的kendo网格。我已经使用mvvm绑定将编辑主体定义为剑道模板,但我认为我必须遗漏一些东西,因为弹出窗口的行为不符合预期。
单击“编辑”时,将显示弹出编辑器,但如果我使用取消按钮关闭弹出窗口,然后再次单击同一行上的“编辑”,则不会显示编辑器。
此外,使用下拉列表measureStatusId
的字段似乎没有按预期发生更改,除非它开始时不为null。
我更喜欢在这里使用mvvm,我不认为这种情况不够常见,需要滚动我自己的编辑弹出窗口?
看到这个JSBin。
var model = {
"title": "Active Community",
"measures": [
{
"measureId": 3,
"completed": false,
"measureStatusId": null,
"measureStatus": null,
"progress": null,
"target": "Council provides a wide range of accessible and well-maintained sports facilities to increase levels of participation in sport and active recreation"
},
{
"measureId": 4,
"completed": false,
"measureStatusId": null,
"measureStatus": null,
"progress": null,
"target": "Council funds and works in partnership with external recreation organisations to help increase levels of participation in sport and active recreation"
}
],
"measureStatuses": [
{
"text": "Green",
"value": "1",
"selected": false
},
{
"text": "Orange",
"value": "2",
"selected": false
},
{
"text": "Red",
"value": "6",
"selected": false
}
]
},
PNCC = {};
$(document).ready(function () {
PNCC.viewModel = new kendo.observable(model);
$("#Measures").kendoGrid({
dataSource: {
data: PNCC.viewModel.measures,
schema: {
model: {
id: "measureId",
fields: {
measureId: { type: "number", editable: false },
target: { type: "string", editable: false },
completed: { type: "boolean" },
measureStatusId: { type: "string" },
measureStatus: { type: "string" },
progress: { type: "string" }
}
}
},
sort: { field: "target", dir: "asc" }
},
"columns": [
{
"title": "Performance Measures & Targets",
"field": "target"
},
{
"title": "Year to date progress and next steps",
"field": "progress"
},
{
"title": "Status",
"field": "measureStatus"
},
{
"title": "Complete?",
"field": "completed"
},
{ command: ["edit"], title: " " }
],
"filterable": false,
"scrollable": true,
editable: {
mode: "popup",
template: kendo.template($("#popup_editor").html())
}
});
});
答案
我认为问题在于您为数据源创建的可观察对象
请检查这个Jsbin
PNCC.viewModel = new kendo.observable(model);
$("#Measures").kendoGrid({
dataSource: {
data: model.measures,
schema: {
model: {
id: "measureId",
fields: {
measureId: { type: "number", editable: false },
target: { type: "string", editable: false },
completed: { type: "boolean" },
measureStatusId: { type: "string" },
measureStatus: { type: "string" },
progress: { type: "string" }
}
}
},
sort: { field: "target", dir: "asc" }
},
"columns": [
{
"title": "Performance Measures & Targets",
"field": "target",
width: "150px"
},
{
"title": "Year to date progress and next steps",
"field": "progress",
width: "150px"
},
{
"title": "Status",
"field": "measureStatus",
width: "150px"
},
{
"title": "Complete?",
"field": "completed",
width: "150px"
},
{ command: ["edit"], title: " ", width: "75px" }
],
filterable: false,
scrollable: true,
editable: {
mode: "popup",
template: kendo.template($("#popup_editor").html())
}
});
另一答案
一些变化:
- 使
measureStatusId
成为model
中的数字和网格模式。 - 将网格
status
列从measureStatus
更改为measureStatusId
- 更改下拉列表的html声明以包含
data-value-primitive="true"
- 更改observable以包含
measures
作为数据源,并更新网格声明以直接使用它,而不是创建新的数据源。
我认为这里的关键变化是使网格和弹出窗口都引用单个对象,而不是两个单独的对象。其余问题似乎源于不匹配的数据类型配置。
对可观察对象的更改如下所示。
PNCC.viewModel = new kendo.observable({
measures: new kendo.data.DataSource({
data: model.measures,
schema: {
model: {
id: "measureId",
fields: {
measureId: { type: "number", editable: false },
target: { type: "string", editable: false },
measureStatusId: { type: "number" },
progress: { type: "string" }
}
}
},
sort: { field: "target", dir: "asc" }
}),
measureStatuses: model.measureStatuses
});
以上是关于单击取消后,Kendo网格弹出编辑器不再打开的主要内容,如果未能解决你的问题,请参考以下文章
弹出窗口在 Kendo UI 网格中的工作原理以及如何在 MVC4 的 Kendo UI ajax 网格中将控件带入弹出窗口