Selection menus additional functionality

Hi,
Is it possible to add additional custom functionality or override an existing functionality (Details, Edit, Delete) of the selection menus?
For example to add our own icon and link it to some custom functionality :confused:

Thanks!

Hello,

you can do the following to add the new button to menu:

  1. define css class for the button:

div.icon_custom:{
background-image:url(some.gif);
}

  1. add this button:

scheduler.config.icons_select = [ā€œicon_detailsā€,ā€œicon_editā€,ā€œicon_deleteā€,ā€œicon_customā€]

  1. define action for it:

scheduler._click.buttons.custom = function(event_id){
/your code here/
}

Great!

Thank you!

:smiley: