ASPxClientCheckBoxList.UnselectAll Method
In This Article
Unselects all check box list items.
#Declaration
TypeScript
UnselectAll(): void
#Remarks
Use the UnselectAll method to unselect all items within a check box list. To select all items, use the ASPxClientCheckBoxList.SelectAll method.
You can unselect items by their indices (ASPxClientCheckBoxList.UnselectIndices), values (ASPxClientCheckBoxList.UnselectValues), or directly (ASPxClientCheckBoxList.UnselectItems).
To obtain the selected items, use the ASPxClientCheckBoxList.GetSelectedItems method.
See Also