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

[Solved] make mouse pointer as hand, without navigateUrl?

2 Answers 117 Views
TreeView
This is a migrated thread and some comments may be shown as answers.
Raymond Mui
Top achievements
Rank 1
Raymond Mui asked on 30 Apr 2008, 09:33 AM
I have a RadTreeView and primarily I detect the Node Value for the next process.  However, is it true that without setting the NavigateUrl, the mouse pointer remains an arrow?  I want to make it show as a "hand" so that end-users know it can be clicked.

I tried to add the node.NavigateUrl = "#", which going nowhere.  It works, except that the IE status bar show the link similiar to http://localhost/Products/#

If the NavigateUrl is required to show the "hand", can I change the status bar?

Besides, for the RadMenu, it seems that no matter a NavigateUrl is set, the mouse point is an arrow, just like the case in this your web top menu.

Thanks

2 Answers, 1 is accepted

Sort by
0
Atanas Korchev
Telerik team
answered on 30 Apr 2008, 10:43 AM
Hello Raymond Mui,

Changing the cursor can be easily done via the following CSS rule:

<style type="text/css">
.RadTreeView .rtIn
{
    cursor: pointer;
}
</style>

For RadMenu you can use:

.RadMenu .rmText
{
     cursor: pointer;
}

Regards,
Albert
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Raymond Mui
Top achievements
Rank 1
answered on 01 May 2008, 05:03 AM
Thanks.
Tags
TreeView
Asked by
Raymond Mui
Top achievements
Rank 1
Answers by
Atanas Korchev
Telerik team
Raymond Mui
Top achievements
Rank 1
Share this question
or