Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 4.0

Bean Shell Form Binder allows you to dictate how Form Data should be loaded and stored.

Sample Script:

Sample Load Binder that will populate field with id "description" with the value "hello world".

Code Block
import org.joget.apps.form.model.*;

FormRowSet f = new FormRowSet();
FormRow r1 = new FormRow();
r1.put("description", "hello world");
f.add(r1);

return f;

Related Articles: