สคริปต์ในภาษาจาวา
สคริปต์ทั้งหมดเป็นค่าเริ่มต้นที่จะนำไปใช้กับทุกแถวในคอลัมน์ดังกล่าวดังนั้นผู้ใช้จึงไม่จำเป็นต้องดำเนินการวนรอบเพื่อใช้การเปลี่ยนแปลงกับทุกแถว
- datalist - org.joget.apps.datalist.model.DataList
- column - org.joget.apps.datalist.model.DataListColumn
- row - Object in DataListCollection (org.joget.apps.datalist.model.DataListCollection) returned by DataListBinder (org.joget.apps.datalist.model.DataListBinder).
To retrieve the property value from Object row, use this service methodในการดึงค่าคุณสมบัติจากแถว Object ให้ใช้บริการเมธอดนี้: DataListService.evaluateColumnValueFromRow(Object row, String propertyName)
- value - String
Returns a String.ส่งคืนสตริง
Code Block |
---|
title | Sample Code |
---|
linenumbers | true |
---|
|
return value + "append this text to every column value"; |
It is also possible to inject hash variables into the values.
Code Block |
---|
title | Sample Code |
---|
linenumbers | true |
---|
|
return value + " #currentUser.firstName#"; |
Example code using DataListService service method:
Code Block |
---|
title | Sample Code |
---|
linenumbers | true |
---|
|
//import the necessary classes
import org.joget.apps.datalist.service.DataListService;
import org.joget.apps.app.service.AppUtil;
DataListService dataListService = (DataListService) AppUtil.getApplicationContext().getBean("dataListService");
//since this entire bean shell applies to every row, "row" is automatically iterated here.
//"name" is the column id
return dataListService.evaluateColumnValueFromRow(row, "name"); |