New to Telerik UI for ASP.NET AJAX? Start a free 30-day trial
Get the Input DOM element of MultiColumnComboBox
Environment
Product | RadMultiColumnComboBox 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.