Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
...
Datasource: Using custom datasource or Joget default datasource
Thai |
---|
แหล่งข้อมูล: การใช้แหล่งข้อมูลที่กำหนดเองหรือแหล่งข้อมูลเริ่มต้นของ Joget |
Custom JDBC Driver: The JDBC driver for custom datasource
Thai |
---|
Custom JDBC Driver: ไดรเวอร์ JDBC สำหรับแหล่งข้อมูลที่กำหนดเอง |
Custom JDBC URL: The JDBC connection URL for custom datasource
Thai |
---|
Custom JDBC URL: URL การเชื่อมต่อ JDBC สำหรับแหล่งข้อมูลที่กำหนดเอง |
Custom JDBC Username: The username for custom datasource
Thai |
---|
ชื่อผู้ใช้ JDBC แบบกำหนดเอง: ชื่อผู้ใช้สำหรับแหล่งข้อมูลที่กำหนดเอง |
Custom JDBC Password: The password for custom datasource
Thai |
---|
Custom JDBC Password: รหัสผ่านสำหรับแหล่งข้อมูลที่กำหนดเอง |
SQL Query: The query to populate options.
Thai |
---|
SQL Query: แบบสอบถามเพื่อเติมตัวเลือก |
Use Ajax: A checkbox to decide whether or not it is using AJAX to load options. (For AJAX Cascading Drop-Down List)
Thai |
---|
ใช้ Ajax: ช่องทำเครื่องหมายเพื่อตัดสินใจว่าจะใช้ AJAX เพื่อโหลดตัวเลือกหรือไม่ (สำหรับ AJAX Cascading Drop-Down List) |
The query should also support a syntax to inject dependency values when using AJAX.
...
Thai |
---|
ให้สร้างปลั๊กอินของเรา เมื่อกระบวนการสร้างเสร็จสิ้นเราจะพบว่าไฟล์ "jdbc_options_binder-5.0.0.jar" ถูกสร้างขึ้นภายใต้ไดเรกทอรี "jdbc_options_binder / target" จากนั้นให้เราอัปโหลด jar ปลั๊กอินไปที่ Manage Plugins หลังจากอัปโหลดไฟล์ jar ให้ตรวจสอบอีกครั้งว่ามีการอัปโหลดและเปิดใช้งานปลั๊กอินอย่างถูกต้อง |
Then, let us create an AJAX Cascading Drop-Down List in a form to test it. Let's create our test form as follows.
Thai |
---|
จากนั้นให้เราสร้าง AJAX Cascading Drop-Down List ในแบบฟอร์มเพื่อทดสอบ มาสร้างแบบทดสอบของเรากันดังนี้ |
Then, configure our select box and JDBC binder.
Thai |
---|
จากนั้นกำหนดค่ากล่องเลือกของเราและ JDBC binder |
In the query, we will use the following query to get the user list based on group id.
...
Code Block | ||
---|---|---|
| ||
select distinct username, firstName, groupId from dir_user u join dir_user_group g on u.username=g.userId where groupId in (?) group by username; |
Configure the dependency to "group". Then, test the result.
Thai |
---|
กำหนดค่าการพึ่งพา "กลุ่ม" จากนั้นทดสอบผลลัพธ์ |
The user select box options changed based on the selected values of group select box.
...
Thai |
---|
อย่าลืมยกเลิกการเลือก "ใช้ AJAX สำหรับตัวเลือกการเรียงซ้อน?" ตัวเลือกเพื่อให้ไม่ใช้ AJAX |
Yes, it works as well. Then, we can test the custom configuration and the test connection button.
...