You can achieve your requirement using the InitializeDropDownContentManager event of RadMultiColumnComboBox. In the event handler, you can get the RadGridView control and populate its SortDescriptors. For example:
privatevoidRadMultiColumnComboBox_InitializeDropDownContentManager(object sender, Telerik.Windows.Controls.MultiColumnComboBox.DropDownContentManagerEventArgs e)
{
var gridView = (RadGridView)e.DropDownContentManager.DropDownElement;
gridView.SortDescriptors.Add(new SortDescriptor() { Member = "MyProperty", SortDirection = ListSortDirection.Descending });
}
Regards,
Martin Ivanov
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/.