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 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.
Best Regards,
Petar IvanovDeveloper Support EngineerInfragistics, Inc.http://ko.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.