How to check whether the field is disabled or not

Hi,

How to check whether the field is disabled or not.Can you please give some suggestion.

Hi,

if you use Webix disable API, then you can use the isEnabled method for it.

If you’ve use the same-name HTML attribute, use the getInputNode method to get the access to an HTML element:

http://webix.com/snippet/4326df48

Also, you can access all config options of the view by using view.config

if ($$("someview").config.disabled) do_something();