如何将自定义属性添加到 kendo 组合框
How to add custom attribute to kendo combobox
我正在使用 kendo UI 开发 Web 应用程序,我需要向组合框添加自定义属性。
我该怎么做?
您可以use JQuery设置一个属性:
示例:
<input id="combobox" style="width: 100%"/>
$("#combobox").kendoComboBox({
dataTextField: "text",
dataValueField: "value",
filter: "startswith",
dataSource: data,
dataBound: onDataBound
});
function onDataBound(e) {
$("#combobox").closest(".k-combobox").attr("someAttr", "someValue");
};
这将导致:
我正在使用 kendo UI 开发 Web 应用程序,我需要向组合框添加自定义属性。
我该怎么做?
您可以use JQuery设置一个属性:
示例:
<input id="combobox" style="width: 100%"/>
$("#combobox").kendoComboBox({
dataTextField: "text",
dataValueField: "value",
filter: "startswith",
dataSource: data,
dataBound: onDataBound
});
function onDataBound(e) {
$("#combobox").closest(".k-combobox").attr("someAttr", "someValue");
};
这将导致: