JavaScript
listObj.editInplaceSaveRow Method
Syntax
listObj.editInplaceSaveRow(rowNum)
Arguments
- rowNumnumber
Zero-based row number to save.
Description
Saves edits to a row in an List with in-place editing.
Discussion
The editInplaceSaveRow() method saves edits for the specified row in a List with in-place editing.
Example
var lObj = {dialog.object}.getControl('LIST1');
if (lObj) {
// Save edits for the third row in the list:
lObj.editInplaceSaveRow(2);
}Limitations
List Control with In-place Editing Enabled
See Also