EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: kayjay on February 01, 2016, 10:08:21 AM



Title: How to disable manual input on datebox or combobox
Post by: kayjay on February 01, 2016, 10:08:21 AM
Any Ideas on how to disable manual input on datebox or combobox. I want the user to only be able to pick and not to type.
Thanks


Title: Re: How to disable manual input on datebox or combobox
Post by: stworthy on February 02, 2016, 12:34:43 AM
Please set the 'editable' property to false.
Code:
$('#cc').combobox({
  editable: false
});


Title: Re: How to disable manual input on datebox or combobox
Post by: kayjay on February 02, 2016, 01:11:18 AM
Why didn't I spot that.
Many thanks