How to show edit and delete buttons on hover of a row in a grid

0
I have some information that is stored in the database and want to present it as a grid. When the user hover over a row the edit and delete buttons must appear for the hovered row. What would be the best soultion to implement such functionality?
asked
2 answers
0

Hi Plamen,

 

The best solution would be to use DataGrid 2, and have these buttons available by using the column as Custom.

 

 

and then simply add the delete button to that column.

 

 

Also, better display your buttons all the time. That way the user knows that those buttons are availalbe.

 

Good luck with it,

Jan

answered
0

Thank you, Jan! That was a really great solution. I managed to fix my issue.

answered