Documentation

onValues

fires after values have been set within toolbar or form

void onValues(){ ... };

Example

$$("myform").attachEvent("onValues", function(){
    //code
});

Details

The event fires when form or toolbar values are set programmatically with the help of a setValues() method.

When values are changed by user in browser, the onChange event is triggered instead.

See also

Back to top