I have using radlistbox with checkboxes="true" and AllowDelete="true" , I am able to checked and unchecked the items. But the default delete option only delete the selected single item. I want to delete checked items only. Is it possible?
Here is the code.
I need to delete the checked items(For example i checked item1 and item3) instead of selected single item. How can i do?
Here is the code.
<telerik:RadListBox ID="rlbManaged" EmptyMessage="No objects added" Width="100%" AllowDelete="true" Height="120px" CheckBoxes="true" runat="server" SelectionMode="Multiple"> <items> <telerik:RadListBoxItem Text="item1" /> <telerik:RadListBoxItem Text="item2" /> <telerik:RadListBoxItem Text="item3" /> </items> </telerik:RadListBox>