RadComboBox and setting the cursor to pointer

1 Answer 125 Views
ComboBox
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
Deasun asked on 16 Jun 2022, 01:49 PM

How do I  set the cursor to the hand pointer for the radcombobox,

Main text box at top and the items in the dropdownlist area.

 

THank

Deasun.

1 Answer, 1 is accepted

Sort by
0
Peter Milchev
Telerik team
answered on 21 Jun 2022, 11:23 AM

Hello Deasun,

You can use the style below to apply the cursor pointer for the RadComboBox and the items in the dropdown:

<style>
    .RadComboBox:hover,
    .RadComboBoxDropDown:hover,
    .RadComboBox :hover,
    .RadComboBoxDropDown :hover,
    .RadComboBox .rcbActionButton .p-icon,
    .RadComboBox .p-icon:before,
    .RadComboBox .p-icon:after{
        cursor: pointer !important;
    }
</style>
<telerik:RadComboBox ID="RadComboBox1" runat="server" RenderMode="Lightweight">
    <Items>
        <telerik:RadComboBoxItem Text="Item 1" />
        <telerik:RadComboBoxItem Text="Item 2" />
        <telerik:RadComboBoxItem Text="Item 3" />
        <telerik:RadComboBoxItem Text="Item 4" />
    </Items>
</telerik:RadComboBox>

Regards,
Peter Milchev
Progress Telerik

Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.

Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
commented on 28 Jul 2022, 10:58 AM

Thank you.
Tags
ComboBox
Asked by
Deasun
Top achievements
Rank 3
Bronze
Bronze
Bronze
Answers by
Peter Milchev
Telerik team
Share this question
or