ASPxClientCheckBoxList.SelectItems(items) Method
Selects the specified items within a check box list.
Declaration
SelectItems(
items: ASPxClientListEditItem[]
): void
Parameters
Name | Type | Description |
---|---|---|
items | ASPxClientListEditItem[] | An array of ASPxClientListEditItem objects that are the items. |
Remarks
Use the SelectItems method to select the specified items within a check box list. To unselect the specified items, use the ASPxClientCheckBoxList.UnselectItems method.
Additionally, you can select items by their indices (ASPxClientCheckBoxList.SelectIndices), values (ASPxClientCheckBoxList.SelectValues), or select all items within the control (ASPxClientCheckBoxList.SelectAll).
To obtain the selected items use the ASPxClientCheckBoxList.GetSelectedItems method.
See Also