ASPxClientCheckBoxList.UnselectValues(values) Method
Unselects items with the specified values within a check box list.
Declaration
UnselectValues(
values: any[]
): void
Parameters
Name | Type | Description |
---|---|---|
values | any[] | An array of Object[] objects that are the item values. |
Remarks
Use the UnselectValues method to unselect items with the specified values within a check box list. To select items specified by their values, use the ASPxClientCheckBoxList.SelectValues method.
Additionally, you can unselect items by their indices (ASPxClientCheckBoxList.UnselectIndices), directly (ASPxClientCheckBoxList.UnselectItems), or select all items within the control (ASPxClientCheckBoxList.UnselectAll).
To obtain values of the selected items, use the ASPxClientCheckBoxList.GetSelectedValues method.
See Also