ASPxClientCheckBoxList.UnselectItems(items) Method
In This Article
Unselects the specified items within a check box list.
#Declaration
TypeScript
UnselectItems(
items: ASPxClientListEditItem[]
): void
#Parameters
Name | Type | Description |
---|---|---|
items | ASPx |
An array of ASPx |
#Remarks
Use the UnselectItems method to unselect the specified items within a check box list. To select the specified items, use the ASPxClientCheckBoxList.SelectItems method.
Additionally you can unselect items by their indices (ASPxClientCheckBoxList.UnselectIndices), values (ASPxClientCheckBoxList.UnselectValues), or unselect all items within the control (ASPxClientCheckBoxList.UnselectAll).
To obtain the selected items, use the ASPxClientCheckBoxList.GetSelectedItems method.
See Also