I have implemented a sample angular app where i have taken a popup component.
In my popup component i have taken two tables ,the first table contains the list data rows and the second table is empty.
I have implemented swapping functionality between the tables.
on clicking the Move to second table button on first table , the selected rows should be transferred to the second table.
And on clicking the Move to first table button on second table, the selected rows should be transferred to the first table.
But I am getting an issue during swapping the data rows.If I make a selectAll in the first table and click on the button Move to second table, the rows are being tansferred.
But initially after opening the popup if I just select 2 or 3 rows and transfer, the selected rows are being transferred but the remaining rows in the first table are getting deleted.....!
please access my sample app here
Can any body please tell what is that i am missing .....?