on

JavaScript

 //The events can be:

 //local (client side)

 JsRO.on('model:Form1.checkBox1','changed',function(elem){

  //yourCode

});

 //remote (are the events declared on the server side)

 JsRO.on('Form1.checkBox1','click', function(elem){

  //yourCode

});

Parameters

Parameters

Description

object

path of the node as string.

event

name of the event as string.

handler

callback as function.

Returns

Returns boolean. TRUE if the event was added and FALSE when it was not.

Description

Allows you to add an event to a specific node.

File

Thinfinity.JsRO