Hi Dileep,
Thank you for contacting Syncfusion support
We have checked your reported query, actionBegin and actionComplete event triggered while user changes the content of the box via the toolbar (moveTo, moveFrom, moveAllTo, moveAllFrom). Please find the below code snippet:
|
App.component.html
<div class="control-section">
<div class="dual-list-wrapper">
<div class="dual-list-groupa">
<h4>Group A</h4>
<ejs-listbox #listbox [dataSource]='dataA' [toolbarSettings]='toolbarSettings' height='330px' scope='#connected-list' [fields]='fields' (actionComplete)="actionComplete($event)"></ejs-listbox>
</div>
<div class="dual-list-groupb">
<h4>Group B</h4>
<ejs-listbox id='connected-list' [dataSource]='dataB' height='330px' [fields]='fields'></ejs-listbox>
</div>
</div>
</div>
App.component.ts
actionComplete(args) {
if (args.eventName === "moveTo" || "moveUp" || "moveDown" || "moveFrom" || "moveAllTo" || "moveFrom") {
alert("action complete triggered");
}
} |
For your convenience we have prepared a sample. Please find the below sample link
Please let us know if you need further assistance on this.
Regards,
Saranya D