JavaScript
listObj.setRowClean Method
Syntax
listObj.setRowClean([zeroBasedRowNumber]);
Arguments
- zeroBasedRowNumbernumber
The row to clean. If not specified, the currently selected row is cleaned.
Description
Sets the row state to clean. If row num is not specified, current row.
Example
var listObj = {dialog.object}.getControl("LIST1"); if (listObj) { listObj.setRowClean(2); }
Limitations
List Control with Detail View Part
See Also