Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
895
Cursor turns into a I beam when it is over a column header
posted

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.

 

Parents
No Data
Reply
  • 49378
    Verified Answer
    posted

    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 Ivanov
    Developer Support Engineer
    Infragistics, Inc.
    http://es.infragistics.com/support

Children