How to change the mouse point of the dropdown content in ASP.NET Core Kendo MultiColumnComboBox

1 Answer 105 Views
MultiColumnComboBox
Sam Phillips
Top achievements
Rank 1
Sam Phillips asked on 30 May 2022, 05:31 PM

Hi,

I'm struggling to change the mouse pointer when selecting a value inside MultiColumnComboBox.  Before opening, the mouse pointer looks correct, but then it opens and the cursor attribute doesn't seem to apply.

I tried .HtmlAttributes(new { style = "cursor:pointer;"})

Thoughts or ideas?

Thanks,

Sam

 

 

1 Answer, 1 is accepted

Sort by
1
Accepted
Petar
Telerik team
answered on 31 May 2022, 07:17 AM

Hi Sam,

You can try the following CSS as demonstrated in this REPL project.

.k-table-list{
    cursor: pointer;
}

If the above doesn't work in your scenario, you can also try this CSS:

.k-table-row.k-hover{
    cursor: pointer;
}

I hope the above suggestions will help you achieve what you need in your scenario. 

Regards,
Petar
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/.

Sam Phillips
Top achievements
Rank 1
commented on 06 Jun 2022, 06:00 PM

Yes, this did the trick, thank you!
Petar
Telerik team
commented on 07 Jun 2022, 07:19 AM

You are welcome! I am glad I could help you. Let me know if you need furhter assistance with the thread.
Tags
MultiColumnComboBox
Asked by
Sam Phillips
Top achievements
Rank 1
Answers by
Petar
Telerik team
Share this question
or