This is a migrated thread and some comments may be shown as answers.

How to display cursor as pointer For RadGrid Item Selection

2 Answers 406 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Nirav
Top achievements
Rank 1
Nirav asked on 31 Dec 2010, 09:16 PM
Hi, I am using "RadControls for ASP.NET AJAX Q3 2009" version and for RadGrid Item selection, I want to display cursor as pointer (hand),
I mean when user moves cursor over grid rows to select, it should show cursor as pointer so that user can know that they can select row.

How do I achieve this irrespective of applied skin? I am using Vista skin at present but I want to apply some code which should work even if I change skin.

Thanks in advance,

2 Answers, 1 is accepted

Sort by
0
Accepted
Shinu
Top achievements
Rank 2
answered on 03 Jan 2011, 05:19 AM
Hello Peter,

Add the style on page to change the mouse pointer to hand.

Style:
<style type="text/css">
    .rgAltRow, .rgRow
    {
        cursor: pointer !important;
    }
</style>


-Shinu.
0
Nirav
Top achievements
Rank 1
answered on 04 Jan 2011, 04:05 PM
that worked perfect. Thanks
Tags
Grid
Asked by
Nirav
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
Nirav
Top achievements
Rank 1
Share this question
or