gpt4 book ai didi

angularjs - 剑道下拉列表占位符

转载 作者:行者123 更新时间:2023-12-03 20:20:15 24 4
gpt4 key购买 nike

我正在使用剑道下拉列表,我需要一个下拉列表的占位符,当我选择下拉列表时,它不应该出现在列表中。我尝试使用 optionLabel 但此值显示在列表中。

 var $dropdownElement;

$dropdownElement = $("<input />");

$dropdownElement.appendTo($dropdownContainer);
$dropdownElement.kendoDropDownList({
dataTextField: "text",
dataValueField: "value",
dataSource: dropdown.items,
optionLabel: "select your option", //shows as option in dropdown
popup: {
appendTo: $dropdownContainer
}
});

我需要一个解决方案,我可以在其中添加一个占位符,并且该值不应显示为下拉列表中的选项。

最佳答案

您始终可以在下拉列表中找到第一个元素并将其隐藏以使其看起来不那么健谈

$dropdownElement.getKendoDropDownList().list.find("li.k-item").first().hide();
Plunker Dropdownlist (and combobox) example

关于angularjs - 剑道下拉列表占位符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33286156/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com