I've enabled sorting in my WebHierarchicalDataGrid. I'm able to sort the columns as expected.
However, when the cursor is over the text of the column header it turns into a I beam cursor. It gives the user the impression that they can edit or select the text of the column header; which they can not.
Is there a way to keep the cursor an arrow when the mouse is over the text of the column header?
I'm using NetAdvantage 11.2 / VS2010 / Windows 7 / Chrome Browser 15.0 / IE 9.0
Thanks,
Brian.
Hi demoend,
Thank you for your reply.
Please feel free to contact me if you have further questions.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://es.infragistics.com/support
Peter,
That works!
However in the Google Chrome browser I needed to clear the cache data for the changes to show up.
Thanks for your time.
Hi Brian,
Thank you for posting in the community.
I was able to replicate the issue though the beam cursor appearance in Chrome. To circumvent this you can modify the .igg_Header CSS class in the ig_dataGrid.css file located by defaul in ig_res/Default. In the CSS class you can add a cursor:Default property.
.igg_Header{ background-color:#6EA3CC; background-repeat:repeat-x; background-image: url(images/igg_header.gif); color: White; cursor:Default;}
Please let me know if this helps.
You could try setting the cursor style on the HeaderCaption css class (or directly on .igg_HeaderCaption). Set it to hand or something else that you want.
regards,David Young