This is a migrated thread and some comments may be shown as answers.

Show on hover

1 Answer 160 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Chrys
Top achievements
Rank 1
Chrys asked on 14 Mar 2013, 09:16 PM
How does one go about only showing the command buttons on hover in an mvc grid?

1 Answer, 1 is accepted

Sort by
0
Dimo
Telerik team
answered on 15 Mar 2013, 11:52 AM
Hello Chrys,

You can hide the Grid buttons with a visibility:hidden style and show them on mouseover:


.k-grid .k-button
{
    visibility:hidden;
}
 
.k-grid:hover .k-button
{
    visibility:visible;
}


I am not sure what your scenario is, but my personal opinion is that such behavior is not very user-friendly.

Regards,
Dimo
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Grid
Asked by
Chrys
Top achievements
Rank 1
Answers by
Dimo
Telerik team
Share this question
or