JavaScript
listObj.unCheckAllRows Method
Syntax
listObj.unCheckAllRows()
Description
Un-checks all rows in the List.
Discussion
The unCheckAllRows() method unchecks all of the rows in the List control.
Example
var listObj = {dialog.object}.getControl('LIST1');
if (listObj) {
listObj.unCheckAllRows();
}This method is only available if Has check-box select control has been enabled.
Limitations
List Control with 'Has check-box select control' Enabled
See Also