我想在 kendo UI 的下拉列表中设置多个值,但在 dataTextField 属性中它只接受一个值
I want to set muliplte values in my dropdownList in kendo UI, but in dataTextField attribute it is accepting only one value
这是我的代码示例:
> $("#User").kendoDropDownList({
dataTextField: "UserName",
dataValueField: "UserID",
dataSource: users,
optionLabel: "Select",
}).data("kendoDropDownList").value(UserID);
dataSource 属性设置为包含关联值的对象 'users'。现在有了 'UserName' 显示值,我想在我的下拉列表显示中附加 'Gender' 的值以及来自 'users' 对象的值。
这是我的代码示例:
> $("#User").kendoDropDownList({
dataTextField: "UserName",
dataValueField: "UserID",
dataSource: users,
optionLabel: "Select",
}).data("kendoDropDownList").value(UserID);
dataSource 属性设置为包含关联值的对象 'users'。现在有了 'UserName' 显示值,我想在我的下拉列表显示中附加 'Gender' 的值以及来自 'users' 对象的值。