Posts

Showing posts with the label extjs

Keyboard is open on click of selectField in Sencha Touch

Image
Keyboard is open on click of selectField in Sencha Touch I have shown a dropdown in my app using the selectfield control. It is working fine when we click the arrow button but when user taps on text (input area), keyboard also getting opened. It is not an input field. selectfield Here is my code: { xtype: 'panel', itemId: 'mypanel23', listeners: { fn: function (component, eOpts) { component.add({ /***DropDown issue***/ xtype: sessionStorage.voiceOver == "on" ? 'panel' : 'selectfield', /***DropDown issue***/ cls: 'myusage_select_list', id: 'billedDD', itemId: 'myselectfield', hideOnMaskTap: true, /***DropDown issue***/ html: sessionStorage.voiceOver == "on" ? "<select class='myusage_select_list' id='billedDD_Accessibi...