Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

...

borderColorgreen
borderWidth1
titleBGColor#ddffcc
borderStylesolid
titleDefinition

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

Figure 1:

Bean Shell Form Binder Properties

NameDescription
Script
Script

A script in Java. See Bean Shell Programming Guide for example.

Info
titleQuick Example

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

Image Modified

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;
Use AJAX for cascade options?

When checked, this allows these fields to dynamically load available options based on the other field value (grouping column) when dealing with a tremendous amount of selections. Read more at Ajax Cascading Drop-Down List.

Info

Not applicable

for

to Form Binder. Only available when used as an Options Binder.

 

 

...