Resolved! Making all the fields non editable except one in Client Script
I am making entire form read only on a condition with a on load client script with code as below : var fields = g_form.getEditableFields();for (var x = 0; x < fields.length; x++) { g_form.setReadOnly(fields[x], true);} This is because i have l...