Disabled button props?

I can’t find how to disable a button or listbutton, would be fine to add some props disabled=true-false

You can try to add disabled class to any element

1 Like

ok with css is good, maybe next release will you introduce it?

It’s already implemented in the current version. If you wanted to do it programmatically you could use Dom7 to add disabled class to any item:

$$('#yourButtonID').addClass('disabled');

1 Like