Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
how can we search the items list like a regualar dropdown :
ddl.SelectedIndex = ddl.Items.IndexOf(cbxPractitionerList.Items.FindByValue("X");
Hello David,
The following code can be used to pre-select an item:
<telerik:RadMultiColumnComboBox runat="server" ID="RadMultiColumnComboBox1" DataTextField="text" DataValueField="value"> <Items> <telerik:MultiColumnComboBoxItem Text="Item 1" Value="1"></telerik:MultiColumnComboBoxItem> <telerik:MultiColumnComboBoxItem Text="Item 2" Value="2"></telerik:MultiColumnComboBoxItem> <telerik:MultiColumnComboBoxItem Text="Item 3" Value="3"></telerik:MultiColumnComboBoxItem> <telerik:MultiColumnComboBoxItem Text="Item 4" Value="4"></telerik:MultiColumnComboBoxItem> </Items> </telerik:RadMultiColumnComboBox>
using System.Linq;
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { RadMultiColumnComboBox1.Index = RadMultiColumnComboBox1.Items.ToList() .IndexOf(RadMultiColumnComboBox1.Items.FindChildByValue("3")); } }
Regards, Peter Milchev Progress Telerik