我正在复制非常接近这里看到的功能。 https://onabai.wordpress.com/2013/07/17/kendoui-multiselect-in-a-grid-yes-we-can/
我有一个带有内联多选编辑器字段的剑道网格。我有一个 datasource.sync() 事件在更改该多选时启动。我遇到的问题是数据在 post 变量中的排列方式。
我在 FireFox 中使用 FireBug。我可以在 sync() 事件中设置一个函数来查看我的多选字段中的值。
console.log(this.value());
这适用于我称为“RoleCode”的字符串数组字段。无论如何,控制台日志会按应有的方式显示值,例如
A, OU
但是,当我查看对控制器的 Post 调用和参数时,我看到 RoleCode 字段重复,这就是我的控制器无法识别方法签名的原因。例如,这就是我在 FireBug 中看到的...
ID 123
Field1 TextFromField1
RoleCode[1][RoleCode] OU
RoleCode[] A
知道我应该如何设置它以便发布参数可用吗?
更新
现在,我只是更改了更新函数以将多选值作为逗号分隔的字符串发送。我可以在控制器中处理它们。我不是很喜欢这种设置,但在我找到如何正确发送发布的值之前,这就是我要做的。
update: {
url: "Home/GridUpdate",
type: "POST",
dataType: "json",
data: function () {
//Grid does not post multiselect array correctly, need to convert to a string
var rolesString = $("#gridRoleList").data("kendoMultiSelect").value().toString();
return { rolesString: rolesString };
},
complete: function (e) {
setTimeout(function () {
refreshGrid();
}, 300);
},
success: function (result) {
// notify the data source that the request succeeded
options.success(result);
},
error: function (result) {
// notify the data source that the request failed
options.error(result);
}
},
更新 2
实际上这不是一个好主意,因为如果我在网格中编辑另一个字段,我会收到一个 js 错误,因为找不到多选。