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

How To Enable cursor:pointer On RadTreeView Check Boxes

2 Answers 113 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Developer Developer
Top achievements
Rank 1
Developer Developer asked on 10 May 2011, 07:52 PM
Hey guys,

By default, when I enable check boxes on the RadTreeView, I'd like the cursor to show up as a hand ( 'pointer' ). I'd like to just make that the default style, but can't seem to find the right thing to target the check boxes. Any help would be appreciated.

2 Answers, 1 is accepted

Sort by
0
Ivan Zhekov
Telerik team
answered on 12 May 2011, 04:54 PM
Hello,

You can add this snippet to your style sheets. Note, it will apply to all Tree Views, so feel free to customize it the way it suits you best.

.RadTreeView .rtUL .rtLI .rtChecked,
.RadTreeView .rtUL .rtLI .rtUnchecked,
.RadTreeView .rtUL .rtLI .rtIn {
    cursor: pointer;
}


Regards,
Ivan Zhekov
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Developer Developer
Top achievements
Rank 1
answered on 12 May 2011, 05:25 PM
That did the trick, thanks.
Tags
TreeView
Asked by
Developer Developer
Top achievements
Rank 1
Answers by
Ivan Zhekov
Telerik team
Developer Developer
Top achievements
Rank 1
Share this question
or