Occurs immediately after the context is restored in the server component.
PSWebDataWindowClass objects
None
Boolean. If true is returned, the validation is considered successful. If false is returned, the webdw.ValidationError event is triggered. You get a compiler error if you do not include a return value in the event script.
The server component action is performed only after the validation succeeds.
This example makes sure that the salary entered is greater than $20,000.
var result;
/* real(gettext() ) > 20000 */
result = (parseFloat(exprCtx.currentText) > 20000);
return result;
Validate for other Web Target object model objects