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

Horizontal scrollbar

2 Answers 66 Views
MultiColumnComboBox
This is a migrated thread and some comments may be shown as answers.
sarthkee
Top achievements
Rank 1
Veteran
sarthkee asked on 31 Jan 2021, 10:42 AM

How can I apply horizontal scrollbar in my radmulticolumncombobox?

because in my radmulticolumncombobox their are 15 columns...

please help!

thanks in advance.

--sarthkee

2 Answers, 1 is accepted

Sort by
0
Doncho
Telerik team
answered on 03 Feb 2021, 03:54 PM

Hi Sarthkee,

I am afraid that currently, the RadMultiColumnComboBox doesn't support horizontal scrolling out of the box.

What I can suggest as a possible approach for implementing the targeted functionality is to use the client-side load event of the control and set the width of the dropdown using the API of the Kendo widget:

<ClientEvents OnLoad="OnLoad" />

JavaScript

function OnLoad(sender, args) {
    sender.kendoWidget.list.width(300);
}
Indeed, there is already a feature request for this functionality in the Kendo UI Feedback portal, so you might want to vote for it to increase its priority - Add built-in horizontal scroll for the popup of the MultiColumnComboBox.

Kind regards,
Doncho
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/.

0
sarthkee
Top achievements
Rank 1
Veteran
answered on 04 Feb 2021, 07:19 AM
Thanks
Tags
MultiColumnComboBox
Asked by
sarthkee
Top achievements
Rank 1
Veteran
Answers by
Doncho
Telerik team
sarthkee
Top achievements
Rank 1
Veteran
Share this question
or