You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

Description

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

Abstract Classes

org.joget.apps.form.model.FormBinder

// 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

// 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

// 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

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

Sample Plugin

Coming soon.

Related Community Plugins

  • 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
  • No labels