The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I got a grid control and want to guide the user so that when he move the mouse over the rows the row under the mousepointer gets highlighted?
Any clues?
Best regards,
Geir
ADAdministrator Syncfusion Team August 18, 2005 01:32 PM UTC
One way you can do this is to use the events PrepareViewStyleInfo and MouseMove. Here is a little sample.
http://www.syncfusion.com/Support/user/uploads/GC_HiLiteRowUnderMouse_ffccb312.zip
GAGeir AamodtAugust 19, 2005 12:04 PM UTC
Thank you, worked very well!
One final detail; I''m having cells that contains links, images, progressbars and so on, do you know if it is possible to make them look focused as well (Using the same procedure you showed me in the example).
Best regards,
Geir
ADAdministrator Syncfusion Team August 19, 2005 12:26 PM UTC
In PrepareViewStyle info, you can try setting partcular properties on e.Style based on the celltype given in e.Style.CellType, but I do not if you will be able to get th elook you want or not. Another option is to handle teh CellDrawn event. There you can overdraw any part of the cell to change its looks.