Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
CWEH.registerHandler("<WIDGET_ID>", CWEC.SWITCH_VIEW_CHANGE, function(arguments) 
{
	// Implementation specific code
})  
  • WIDGET_RENDERED

This handler is applicable for all the views (apps). This event occurs after the app (widget) is loaded with the data.

Code Block
languagejs
CWEH.registerHandler("<WIDGET_ID>", CWEC.WIDGET_RENDERED, function(record)
{
	// Implementation specific code
})