- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的功能 userNameEditor
function userNameEditor(container, options) {
$('<input required data-bind="value:' + options.field + '"/>')
.appendTo(container)
.kendoComboBox({
dataTextField: "UserName",
dataValueField: "UserId",
filter: "contains",
minLength: 3,
//_readMethod: '../Warehouse/SearchUser',
dataSource: new kendo.data.DataSource({
transport: {
contentType: "application/json; charset=utf-8",
serverFiltering: true,
read: {
url: "../Warehouse/SearchUser",
//data: { //?????????//
// q: function () {
// return $("#autoComplete").data("kendoAutoComplete").value();
// },
// maxRows: 10,
// username: "demo"
//}
},
},
}),
})
}
我要抓
kendoComboBox
值转到 Controller 并返回用户名包含值,请给我取值的方法!!!!
grid._columns.push(grid.GridColumn('Id', null, '200px', null, null, null, null, null, null, null, true));
grid._columns.push(grid.GridColumn('User', 'User', '200px', null, "#=User.UserName#", null, null, null, null, null, null, null, null, null, userNameEditor));
grid._columns.push(grid.GridColumn(null, ' ', '200px', { style: 'text-align:right' }, null, null, null, null, null, null, null, null, null, ['edit', 'destroy']));
最佳答案
嗨,伙计们,这是我的回答。我希望这个答案对你有所帮助。而 Teleric 的人 Alex 给我这个链接也许可以帮助 https://dojo.telerik.com/@bubblemaster/IYekeYoc
function userNameEditor(container, options) {
debugger;
var gridDataSource = new kendo.data.DataSource({
transport: {
read: {
url: '../Warehouse/SearchUser',
dataType: "json"
},
success: function(e) {
debugger;
},
error: function (e) {
debugger;
}
}
});
var cmb=$('<input name="' + options.field + '"/>')
.appendTo(container)
.kendoComboBox({
autoBind: false,
dataTextField: "UserFullName",
dataValueField: "Id",
filter: "contains",
minLength: 3,
dataSource: gridDataSource,
filtering: function (e) {
var filter = e.filter;
gridDataSource.read({ userSearchText: filter.value });
//dataSource.filter({ userSearchText: filter.value });
},
dataBound: function (e) {
debugger;
var equipmentData = e.sender.dataSource.data();
$.each(equipmentData, function (index, selectedEquipmentData) {
var dataItem = e.sender.dataSource.at(index);
});
},
select: function(e) {
debugger;
this.refresh();
},
complete: function(e) {
debugger;
},
error: function(e) {
debugger;
}
}).data('kendoComboBox');
cmb.refresh();
debugger;
//.kendoComboBox({
// autoBind: false,
// dataTextField: "NameSurname",
// dataValueField: "Id",
// filter: "contains",
// minLength: 3,
// dataSource: dataSource,
// filtering: function (e) {
// debugger;
// var filter = e.filter;
// //dataSource.read({ userSearchText: filter.value });
// dataSource.filter({ userSearchText: filter.value })
// }
//});
};
关于javascript - 内联网格 kendoComboBox 在 javascript 中获取值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63488025/
我在我的应用程序中使用 Kendo ComboBox,代码如下: $("#txtSetorOrigem").kendoComboBox({ change : function (e) {
我设置了一个 kendoComboBox,我试图阻止箭头键发送输入。 在我下面的示例中,如果我删除对 keyCode 38 和 40(上下箭头)的检查,它将阻止所有字母数字输入,但箭头键仍会更改 ke
我正在使用 kendo UI、HTML5、Javascript 和 Require.js 等开发一个大型网络应用程序。我无法弄清楚为什么在 jQuery 上调用 $(selector).data('k
这是我的功能 userNameEditor function userNameEditor(container, options) { $('') .appendTo(container)
我有一个 KendoComboBox,在 MVC 模式下,这些 Combo 可以加载值列表。 现在,我需要加载这些 ComboBox,但我需要您仅在值列表中存在某个值时自动预选某个值,如果找不到该值,
我有一个像这样的 Kendo UI 组合框对象: widget: "kendoComboBox", options: { dataTextFie
我是一名优秀的程序员,十分优秀!