Panel |
---|
borderColor | green |
---|
borderWidth | 1 |
---|
titleBGColor | #ddffcc |
---|
borderStyle | solid |
---|
title | Definition |
---|
|
Bean Shell Form Binder allows you to dictate how Form Data should be loaded and stored. ช่วยให้คุณกำหนดวิธีการโหลดและจัดเก็บข้อมูลฟอร์มได้ |
Figure ภาพที่ 1: คุณสมบัติ Bean Shell Form Binder PropertiesBinder
Script in Java. See Bean Shell Programming Guide for example.Sample Load Binder that will populate field with ตัวอย่างโหลด Binder ที่จะเติมฟิลด์ด้วย id "description" |
|
with the value .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 tremendous amount of selections. Read more at เมื่อเลือกตัวเลือกนี้จะทำให้ฟิลด์เหล่านี้โหลดตัวเลือกที่มีอยู่แบบไดนามิกโดยยึดตามค่าฟิลด์อื่น (คอลัมน์การจัดกลุ่ม) เพื่อจัดการกับการเลือกจำนวนมาก อ่านเพิ่มเติมได้ที่ Ajax Cascading Drop-Down List. |
Not applicable for Binder. Only available when used as an Options Binder.
...
Binder ใช้ได้เฉพาะเมื่อใช้เป็น Binder ตัวเลือก |
|