This is a migrated thread and some comments may be shown as answers.

OnClientItemRequesting of RadCombobox not getting fired on IE

2 Answers 20 Views
AutoCompleteBox
This is a migrated thread and some comments may be shown as answers.
emil
Top achievements
Rank 1
emil asked on 15 Aug 2014, 02:03 PM
There is a Telerik Rad Combobox which has three events.
OnClientItemRequesting,OnClientItemRequested,OnClientKeyPressing. All the above three events is calling a JS function.

In case of Chrome and Firefox all the three events gets fired on key press and autocomplete opens
In case of all IE only OnClientKeyPressing fire and autcomplete doesn't open

The page doctype is HTML5

Please provide a solution to the above problem

Thanks.

2 Answers, 1 is accepted

Sort by
0
Dimitar Terziev
Telerik team
answered on 19 Aug 2014, 06:10 AM
Hello,

Could you verify the version of the controls that you are using? Also please check whether there are any JS errors thrown.

Regards,
Dimitar Terziev
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
0
Shinu
Top achievements
Rank 2
answered on 19 Aug 2014, 06:55 AM
Hi emil,

As a work around please try the below JavaScript code in OnClientKeyPressing event.

JavaScript:
function openDropDown(sender, args) {
    sender.showDropDown();
}

Thanks,
Shinu.
Tags
AutoCompleteBox
Asked by
emil
Top achievements
Rank 1
Answers by
Dimitar Terziev
Telerik team
Shinu
Top achievements
Rank 2
Share this question
or