fires after the data for the form received, but before it's assigned to actual fields
id | string|number | the form id |
values | object | a hash of values |
myForm.attachEvent("onBeforeDataLoad", function (id, values){
//your code here
return true;
});
The event is blockable. Returning "false" will prevent loading data into the form
Back to top