JavaScript
listObj._hasClientSideError Method
Syntax
listObj._hasClientSideError()
Returns
- resultboolean
Returns true if any control in the List Detail View has a client-side validation error.
Description
Returns true if any control in the List Detail View has a client-side validation error.
Example
var listObj = {dialog.object}.getControl("LIST1");
if (listObj) {
if (listObj._hasClientSideError()) {
A5.msgBox.show("Client-side Error","A client-side error occurred in LIST1","o");
}
}Limitations
List Control with Detail View Part
See Also