Hi
Is there a proper way to make the combobox “readonly”? The reason I want to achieve this is to avoid the android keyboard appearing if the user touch the text area.
I’ve found the following solution, but I don’t like it:
$('#jqxcombobox').find('input, textarea, select').attr('readonly', true);
The reason I don’t like it is because in the desktop a forbidden icon appears when hover the mouse over the text area and in the phone it makes the text area to feel unresponsive.
What I’d like is to open the list if the user touch the text area or the dropdown icon, without entering into edit mode.
Is that possible? I think it should be, that behavior is needed in a lot of apps.
Thank you.