Hi,
I have a panel; it contains several jeasyui objects : textbox, datebox, combobox, linkbuttons etc etc.
The objects are added at runtime so I do not know which objects there will be in.
Now I want to disable all the objects into the panel.
As I said, The problem is that I don't know how many and what type of objects I have.
I tried with:
$('#myPanel').find('*').prop('disabled',true)
It works for all objects except the linkbutton: this implies that the combo arrows remains active.
http://jsfiddle.net/korenanzo/c3vehtL2/Is there another way ?
Thanks,
RIc