ASPxClientListBox.UnselectAll Method
In This Article
Unselects all list box items.
#Declaration
TypeScript
UnselectAll(): void
#Remarks
If the filter criteria is applied to the list box on the client side, the UnselectAll
method affects only the filtered list box items. If a user implements the following actions sequentially – filtering, selecting all the filtered items and then clearing the applied filter criteria – only the previously filtered list box items remains selected. It means that the UnselectAll
method is applied only to the currently visible list box items.
Note
The Unselect
method is not in effect if the ASPx
function OnClick(s, e) {
clientListBox.UnselectAll();
}
For more information about multiple selection, read the Multi-Selection Mode topic.
See Also