Create a toggle button
We are attempting to create a UI Action button that toggles all fields to be editable on what they currently are set. We have the code:var fields = g_form.getEditableFields();for (var x = 0; x < fields.length; x++) { g_form.setReadOnly(fields[x], ...
