ASPxClientCheckBox.GetChecked Method
In This Article
Returns a value indicating whether the check box editor is checked.
#Declaration
TypeScript
GetChecked(): boolean
#Returns
Type | Description |
---|---|
boolean |
|
#Remarks
Use the GetChecked method on the client side to determine the checked status of the check box editor.
#Example
The complete sample project is available in the DevExpress Code Central database at E1120.
...
function popupControl_Init(s, e) {
//Synchronize the client variable's value with the confirm dialog checkbox' setting
dontAskConfirmation = cbDontAsk.GetChecked();
}
function ShowPopup(rowId) {
//Assign the row's ID value to a specific label within the confirmation dialog,
//show the dialog, and set focus to the Yes button
lbRowId.SetText(rowId);
popupControl.Show();
btnYes.Focus();
}
function btnYes_Click(s, e) {
ClosePopup(true);
}
function btnNo_Click(s, e) {
ClosePopup(false);
}
function cbDontAsk_CheckedChanged(s, e){
//Synchronize the client variable's value with the confirm dialog checkbox'
//setting, and focus the Yes button
dontAskConfirmation = cbDontAsk.GetChecked();
btnYes.Focus();
}
...
See Also