JavaScript
listObj.editInplaceCancelAll Method
Syntax
listObj.editInplaceCancelAll()
Description
Cancels all edits to the List with in-place editing.
Discussion
The editInplaceCancelAll() method cancels all edits for rows that are in Edit mode in a List control.
Example
var lObj = {dialog.object}.getControl('LIST1'); if (lObj) { lObj.editInplaceCancelAll(); }
Limitations
List Control with In-place Editing Enabled
See Also