New to Telerik UI for ASP.NET AJAXStart a free 30-day trial

Get the Input DOM element of MultiColumnComboBox

Updated over 6 months ago

Environment

ProductRadMultiColumnComboBox for ASP.NET AJAX

Description

The article demonstrates how you can get reference to the DOM input element of the RadMultiColumnComboBox.

Solution

RadMultiColumnComboBox is a server wrapper of the Kendo UI MultiColumnComboBox and you can obtain reference to its input through the kendoWidget as shown below:

JavaScript
var multicolumncombo = $find("<%= RadMultiColumnComboBox1.ClientID %>");
//get reference to the input element
var input = multicolumncombo.kendoWidget.input;

//get for example the input value
var inputValue = multicolumncombo.kendoWidget.input.val();

You can find more information for the client-side API at RadMultiColumnComboBox Object.

In this article
EnvironmentDescriptionSolution
Not finding the help you need?
Contact Support