Hi Folks.
is there any way to disable all input fields in an div container with dojo ?
something like :
dijit.byId('main').disable -> Input ?
|
|
|
|
|
|
|
Sure there is. Open up this form test page for example, launch FireBug and execute in the console:
Notes:
Update: There's also a shortcut for setting an attribute value using NodeList's
|
|||
|
|
|
|
Something else to keep in mind is the difference between A Dijit and a regular DomNode. If you want all Dijit's within a DomNode, you can convert them from Nodes -> Dijit refs with query no problem:
It really just depends on if your inputs are regular Dom input tags or have been converted into the rich Dijit templates (which all do have a regular input within them, just controlled by the widget reference instead) |
||
|
|
|
|
That's how I do it:
This one-liner disables all form elements in the given container. |
||
|
|