Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
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 PropertiesBinder 

NameDescription
ScriptScript in Java. See Bean Shell Programming Guide for example.
สคริปต์ใน Java ดูตัวอย่างที่ Bean Shell Programming Guide 
Info
titleQuick Example

Sample Load Binder that will populate field with ตัวอย่างโหลด Binder ที่จะเติมฟิลด์ด้วย 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.
 Binder ใช้ได้เฉพาะเมื่อใช้เป็น Binder ตัวเลือก