我有一个radlistbox,我想清除radlistbox项。我已经尝试过此代码,但未按预期工作。有人可以给我一个想法,我该怎么做。
谢谢。
<telerik:RadListBox RenderMode="Lightweight" runat="server" AllowReorder="True" AllowDelete="true" ID="RadListBox1" Height="200px" Width="230px" AutoPostBack="false" ButtonSettings-AreaWidth="35px">
<ButtonSettings Position="Right" AreaWidth="35px"></ButtonSettings>
</telerik:RadListBox>
脚本:
function ClearListbox()
{
var listBox = $find('<%=RadListBox1.ClientID%>');
listBox.trackChanges();
listBox.clearSelection();
listBox.commitChanges();
}
答案 0 :(得分:0)
clearSelection方法只是从所选项目中删除突出显示。
您应该使用get_items()。remove或removeAt方法才能成功:
var lb = $find("ctl00_ContentPlaceholder1_RadListBoxSource");
var item = lb.get_selectedItem();
lb.trackChanges();
lb.get_items().remove(item);
lb.commitChanges();
您还需要进行选择才能删除所选的项目。