Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Grid is not refreshing when rows are deleted. #37

Closed
seagulledge opened this issue Oct 31, 2023 · 1 comment
Closed

Grid is not refreshing when rows are deleted. #37

seagulledge opened this issue Oct 31, 2023 · 1 comment

Comments

@seagulledge
Copy link

seagulledge commented Oct 31, 2023

I am using Vue3 composition API, and I made a button handler to delete selected records. The action partially works. The record(s) are removed from the data model, the 'delete' event is called, and exporting the data afterwards does not include the deleted rows.

However: the rows are NOT visually removed from the table. They still appear, and can be selected and edited. No changes are tracked on those edits, and the records can't be deleted again. Tested with just deleteRecord() and had the same problem.

   const grid = ref<any>(null)
   
   const DeleteRecord = () => {
        grid.value.deleteSelectedRecords()
    }
@cscan
Copy link
Owner

cscan commented Nov 2, 2023 via email

@cscan cscan closed this as completed Nov 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants