3
我正在使用kendodropdown。我使用了optionLabel =「Actions」,它在下拉菜單中顯示爲一個選項,我如何忽略它作爲下拉值。kendo dropdownlist在下拉菜單中顯示optionlabel
有沒有一種方法可以阻止或隱藏kendo下拉列表中的optionLabel作爲下拉菜單中的選項顯示。
var $dropdownElement = $("<input />");
$dropdownElement.appendTo($dropdownContainer);
$dropdownElement.kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: dropdown.items,
optionLabel: 'Actions'
})
由於現在行動被顯示爲一個選項,在下拉列表中,請幫我忽略它在下拉列表中值。
(據我所知)它是下拉列表的默認功能,我們不能改變它。 –