jQWidgets Forums

jQuery UI Widgets Forums Grid Mouse Hover on JQX Grid

This topic contains 1 reply, has 2 voices, and was last updated by  ivailo 9 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Mouse Hover on JQX Grid #81772

    MohanV
    Participant

    Hi,
    I have multiple grids in my application, I have a scenario to show Mouse – ‘Edit’ symbol when I hover the grid that DOES NOT have any pop-up when I click on the row and ‘Hand’ symbol when I hover the grid that DOES have pop-up when I click on the grid row. Please advise me on how to achieve this. Thanks in advance

    Mouse Hover on JQX Grid #81785

    ivailo
    Participant

    Hi MohanV,

    You can use CSS cursor Property.

    #jqxgrid:hover{
      cursor: text;
    }
    #jqxgrid2:hover{
      cursor: pointer;
    }

    Here is a demo.

    Best Regards,
    Ivailo Ivanov

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.