JavaScript
listObj.detailViewIsDirty Method
Syntax
listObj.detailViewIsDirty();
Returns
- resultboolean
Returns a true/false value. If any controls in the Detail View are dirty (modified from the original value), returns true. Otherwise, returns false.
Description
Returns true/false if the controls that show the Detail View are dirty or not.
Example
var listObj = {dialog.object}.getControl("LIST1"); if (listObj) { if (listObj.detailViewIsDirty()) { A5.msgBox.show("Is Detail View Dirty?","Detail View is dirty.","o"); } }
Limitations
List Control with Detail View Part
See Also