angular-data-grid / angular-data-grid.github.io

Light and flexible Data Grid for AngularJS applications.
http://angular-data-grid.github.io/demo/bootstrap/
112 stars 50 forks source link

Error to Delete row #61

Open PabloMaly opened 7 years ago

PabloMaly commented 7 years ago

When I delete a row after sorting...it delete the row who was before I sorted it.

PabloMaly commented 7 years ago

Any?

AnishLushte07 commented 7 years ago

can you provide your code sample?

AndreyChayko commented 7 years ago

@PabloMaly If you are using $index to remove the item it won't work as after filtering or sort grid is working with new created list of items and does not store information about the order of items in the old list, in this case you need to pass to your function the whole item as a parameter instead of $index. Please check it and if it won't fix your problem please attach a code sample

zorta86 commented 7 years ago

Hi, may I ask you a code sample to delete (client-side) a row and refresh the table? Thank you