Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents

Description

Form Load Binder Plugins to extend methods of loading data in a form from any data source.
Form Options Binder Plugins to extends method to loading data for a form field’s options from any data source.
Form Store Binder Plugins to extend methods of storing data in a form to any data source.

Abstract Classes

org.joget.apps.form.model.FormBinder

Code Block

// Variables
private Map<String, Object> properties;

// Abstract and Interface Methods
public String getName();

public String getDescription();

public String getVersion();

public String getLabel();

public String getClassName();

public String getPropertyOptions();

// Available Methods
public Map<String, Object> getProperties();

public void setProperties(Map<String, Object> properties);

public Object getProperty(String property);

public String getPropertyString(String property);

public void setProperty(String property, Object value);

Interface Classes

Form Load Binder

org.joget.apps.form.model.FormLoadBinder, org.joget.apps.form.model.FormLoadElementBinder

Code Block

// Interface Methods
public FormRowSet load(Element element, String primaryKey, FormData formData);

Form Options Binder

org.joget.apps.form.model.FormLoadBinder, org.joget.apps.form.model.FormLoadOptionsBinder

Code Block

// Interface Methods
public FormRowSet load(Element element, String primaryKey, FormData formData);

Form Store Binder

org.joget.apps.form.model.FormStoreBinder, org.joget.apps.form.model.FormStoreElementBinder

Code Block

// Interface Methods
public FormRowSet store(Element element, FormRowSet rows, FormData formData);

Sample Plugin

Coming soon.

Related Community Plugin

  • App Message Hash Variable
  • Current User Hash Variable
  • Date Hash Variable
  • Environment Variable Hash Variable
  • Form Data Hash Variable
  • Performer Hash Variable
  • Request Parameter Hash Variable
  • User Hash Variable
  • User Variable Hash Variable
  • Workflow Assignment Hash Variable
  • Workflow Variable Hash Variable