In many cases developers want to freeze (disable) form.
Can we get extra api for jqxForm to disable all form, as we can do it with grid and other componets.
I did try
$("#formaPovrataSpn").jqxForm('disabled');
This trows error
Uncaught jqxCore: Invalid parameter ‘[disabled]’ does not exist.
I usually my other forms disabling by code:
$("#formaPovrataSpn :input").prop("disabled", true);
This does not throw errors but form remain active.
Also
$(“#formaPovrataSpn”).prop(“disabled”, true);
does not throw erros but there is no disabled.
Look like only way to disable form inputs it is to irritate over all inputs, finding them by getComponentByName and setting prop for each.