Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
changes.mady.by.user Justin
Saved on Jan 19, 2021
Saved on Dec 16, 2021
...
Select any datalist present in the current app, for interaction with API.
Any description here.
Get all records from the specified datalist.
Name
Filters the returned datalist records by querying the search terms with the datalist columns.
Similar to the LIKE operator for database querying.
From API Builder plugin BETA4 onwards, here supports support Date Range filtering.
Multiple values for the date range filter can be split with the ("|") symbol.
It will look like this:
http://localhost:8080/jw/api/list/ExpensesListAll?d-114034-fn_dateCreated=2021-12-25|2021-12-30
Do note that when calling this API externally, special characters must be encoded before performing the API call. So after encoding URL special characters, it should look like this below:
http://localhost:8080/jw/api/list/ExpensesListAll?d-114034-fn_dateCreated=2021-12-25%7C2021-12-30
{ "total": 4, "size": 4, "data": [ { "ref": "0003", "total": "5.00", "dateCreated": "Aug 21, 2019", "remark": "", "title": "Business Trip CEO", "claimant": "Admin Admin", "SelectApprover": "admin", "status": "<span style='color:orange;font-weight:bold;'>Submitted</span>" }, ..... ] }