Completed
Last Updated: 12 Jan 2016 15:39 by HMcCracken
ADMIN
Boyan Dimitrov
Created on: 25 Feb 2014 14:25
Category: UI for ASP.NET AJAX
Type: Bug Report
1
FIX: RadComboBox with Filter="Contains" when user types some customt text in the input filed and initiate a post-back the selected index changed event is fired and selecte item is null

		
2 comments
HMcCracken
Posted on: 23 Jul 2014 18:37
Telerik suggested a workaround but it seems to break other things (e.g. RadAjaxLoadingPanel)

The workaround is to subscribe to the OnClientDropDownClosed event:

function OnClientDropDownClosed(sender, eventArgs) {
            var text = sender.get_text();
            var item = sender.findItemByText(text)
            if (item) {
                item.select();
            }
            else {
                sender.clearSelection();
            }
        }
HMcCracken
Posted on: 22 Jul 2014 20:30
Is the plan to fix this bug anytime soon?