How to put a button in the gridcolumns? #946
Answered
by
diegosyswork
LeandroSiani
asked this question in
Q&A
-
I would like to know how to create a grid with Edit/remove events in each row. |
Beta Was this translation helpful? Give feedback.
Answered by
diegosyswork
Nov 19, 2024
Replies: 1 comment 1 reply
-
Hi, you can use on a new column and put whatever comes to mind there, in my case I created a component that has the buttons: show, edit and delete
create a new class named ShowEditDeleteToolbar.razor: with this code:
@code
} I hope I have helped you. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
LeandroSiani
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, you can use on a new column and put whatever comes to mind there, in my case I created a component that has the buttons: show, edit and delete
create a new class named ShowEditDeleteToolbar.…