onToolbarPreparing(e){
this.gridElement = e.element;
this.toolbarItems = e.toolbarOptions.items;
this.toolbarItems.unshift({
name: 'realistPlanButton',
location: 'after',
widget: 'dxButton',
options: {
hint: 'Realisasi Rencana',
icon: 'fas fa-clipboard-check',
onClick: this.realistPlan.bind(this)
}
},{
name: 'sharePlanButton',
location: 'after',
widget: 'dxButton',
options: {
hint: 'Realisasi Rencana',
icon: 'fa fa-share-alt',
onClick: this.sharePlan.bind(this)
}
});
}