quickinfo_buttons

stores a collection of buttons resided in the pop-up task's details form

array quickinfo_buttons;

Example

gantt.config.quickinfo_buttons=["icon_delete","icon_edit","advanced_details_button"];
gantt.locale.labels["advanced_details_button"] = "Advanced Info";
gantt.init("gantt_here");
 
gantt.$click.buttons.advanced_details_button=function(id){
    gantt.message("These are advanced details");
    return false; //blocks the default behavior
};


Default value:

["icon_delete","icon_edit"]

Related samples

Details

This option is defined in the Quick Info extension, so you need to activate the quick_info plugin.

See also
Back to top