off

JavaScript

 //The events can be:

 //local (client side)

 JsRO.off('model:Form1.checkBox1','changed',handler);

 //remote (events declared on the server side)

 JsRO.off('Form1.checkBox1','click', handler);

Parameters

Parameters

Description

object

node path as string.

event

event name as string.

handler

reference to the handler function previously set in the on method

Returns

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

Description

Allows you to remove an event from a specific node.

File

Thinfinity.JsRO