Versions Compared

Key

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

Table of Contents

Introduction

info
Panel
borderColorpurple
borderWidth1
titleBGColor#ddccff
borderStylesolid
titleBean Shell Form BinderDo You Know?

Bean Shell Form Binder works as Options Binder too.

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

...

Bean Shell Form Binder Properties

Configure Bean Shell Form Binder

Image Added

Screen (Click to view)
NameDescription
Script

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

Image Removed


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 to Form Binder. Only available when used as an Options Binder.

Form Options Caching

Image Added

Screen (Click to view)Image Removed
NameDescription
Sync Cache Interval

How often to activate cache synchronization (in seconds).

For example, when set to 180 seconds, background synchronization in the server will take place every 180 seconds to refresh with the new/latest data.

Pause sync after idle

How long to wait to pause synchronization after idle.

...

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

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

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

return f;