on |
//The events can be: //local (client side) JsRO.on('model:Form1.checkBox1','changed',function(elem){ //yourCode }); //remote (events declared on the server side) JsRO.on('Form1.checkBox1','click', function(elem){ //yourCode });
Returns boolean. TRUE if the event was added and FALSE when it was not. Allows you to add an event to a specific node. |