delete row from table with button #3290
-
please help me for delete table row by click button! |
Beta Was this translation helpful? Give feedback.
Answered by
adamleemiller
Jan 11, 2023
Replies: 1 comment
-
Simply add a button to each table row then using an click event, call a method that removes the data from your data set. This can be achieved by calling your API to remove the data from your database then refresh the data from the API or by using Javascript.splice to remove the item from the data set already loaded into the UI. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wesdevpro
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Simply add a button to each table row then using an click event, call a method that removes the data from your data set. This can be achieved by calling your API to remove the data from your database then refresh the data from the API or by using Javascript.splice to remove the item from the data set already loaded into the UI.