Versions Compared

Key

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

...

Code Block
languagejs
CWEH.registerHandler('WS_DESIGNER_APP', CWEC.PREF_CHNG, function(arguments)
{
	console.log(arguments);
}) 
  • CONTEXT _CLICK

...

  • MENU

The Context Menu Handler Registry (CMHR) handles the context-menu event that are applicable only for the grid views. This event occurs when the user right-clicks on any data or cell in the grid.
See Creating a sample Context Menu for more details.

Code Block
languagejs
CMHR.registerHandler("<WIDGET_ID>", function(config) 
{
	var rowData = config.record.data;
});


  • DRILL_DOWN

This is a special handler and is applicable only for column in the grid whose DRILL_DOWN_IND is marked as 'Y'. This event occurs when the user clicks on the hyper-linked data on the drill down enabled column.

...