Usages
Used to extend methods of executing an action on list item. E.g. Delete a record
Thai |
---|
ใช้เพื่อขยายวิธีการดำเนินการกับรายการ เช่น. ลบบันทึก |
Datalist Action Plugin can be used as Datalist row action as single record action or as whole list action for multiple records. It also can use in individual column by configure it in Column - Action Mapping.
Thai |
---|
ปลั๊กอินการกระทำดาต้าลิสต์สามารถใช้เป็นแอคชั่นแถวดาต้าลิสต์เป็นการกระทำแบบเรคคอร์ดเดี่ยวหรือการกระทำแบบรายการทั้งหมดสำหรับหลาย ๆ นอกจากนี้ยังสามารถใช้ในแต่ละคอลัมน์โดยกำหนดค่าใน Column - Action Mapping. |
A useable Datalist Action Element plugin must extends org.joget.apps.form.model.Element abstract class.
Abstract Class
org.joget.apps.datalist.model.DataListActionDefault
Under wflow-core module
Thai |
---|
ภายใต้โมดูล wflow-core |
Extended org.joget.plugin.base.ExtDefaultPlugin. Please refer to Plugin Base Abstract Class and Interface.
Implemented org.joget.plugin.property.model.PropertyEditable. Please refer to Plugin Base Abstract Class and Interface.
A base abstract class to develop a Datalist Action Plugin.
Thai |
---|
คลาสนามธรรมพื้นฐานเพื่อพัฒนาปลั๊กอินการทำดาต้าลิสต์ |
Method Detail
Abstract Methods
getLinkLabel
public java.lang.String getLinkLabel()
...
Plugin Properties Options
Thai |
---|
ตัวเลือกคุณสมบัติปลั๊กอิน |
Please refer to Plugin Properties Options for more information.
Predefined Property
Thai |
---|
คุณสมบัติที่กำหนดไว้ล่วงหน้า |
visible
getVisibleOnNoRecord method use this value to decide whether or not show this action when no record in the datalist
Thai |
---|
เมธอด getVisibleOnNoRecord ใช้ค่านี้เพื่อตัดสินใจว่าจะแสดงแอ็คชันนี้หรือไม่เมื่อไม่มีเร็กคอร์ดในรายการข้อมูล |
Code Block |
---|
{
label : '@@datalist.hyperlinkdatalistaction.visible@@',
name : 'visible',
type : 'checkbox',
options : [
{'value' : 'true', 'label' : ''}
]
} |
Tutorials
Thai |
---|
ปลั๊กอินที่เกี่ยวข้อง |
- Form Row Delete Action
Thai |
---|
การกระทำลบแบบฟอร์มแถว |
org.joget.apps.datalist.lib.FormRowDeleteDataListAction (wflow-core) - Data List Hyperlink Action
Thai |
---|
รายการข้อมูลการกระทำเชื่อมโยงหลายมิติ |
org.joget.apps.datalist.lib.HyperlinkDataListAction (wflow-core)
...