Versions Compared

Key

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

Bean Shell Form Binder allows you to dictate how Form Data should be loaded and stored.表单绑定器 允许你选择如何加载或存储表单数据

Figure 1图1: Bean Shell Form Binder Properties表单绑定器属性

Name名称Description描述
Script

Script in Java. See Java中的脚本。例如,请参阅 Bean Shell Programming Guide for example .

Info
titleQuick Example

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;
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 tremendous amount of selections. Read more at 选中时,这允许这些字段在处理大量选择时动态地根据其他字段值(分组列)来   加载可用  选项。阅读更多在 Ajax Cascading Drop-Down List.

Info

Not applicable for Form Binder. Only available when used as an Options Binder.