Hi Hasitha,
Greetings from Syncfusion support.
You can achieve your requirements using the openDialog public
method. In the below sample, we have passed the dropped data information into a
dialog popup and opened it using the openDialog public method with Edit
and modified data arguments. Please find the below code and sample for
your reference.
|
OnDragStop(args) {
this.kanbanObj.openDialog('Edit', args.data[0]); // Here,
open the dialog using dropped data information
}
render() {
return (
<div className="kanban-control-section">
<KanbanComponent
dragStop={this.OnDragStop.bind(this)}
>
</KanbanComponent>
</div>
);
}
|
Sample: https://stackblitz.com/edit/react-ewnpt6?file=index.js,index.html
API link: https://ej2.syncfusion.com/react/documentation/api/kanban/#opendialog
Please check the above sample and let us know if your
requirements are met.
Regards,
Buvana s