ASPxClientCheckBoxList.UnselectItems(items) Method
Unselects the specified items within a check box list.
Declaration
UnselectItems(
items: ASPxClientListEditItem[]
): void
Parameters
Name | Type | Description |
---|---|---|
items | ASPxClientListEditItem[] | An array of ASPxClientListEditItem objects that are the items. |
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