Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
Thank you for the answers, I have figured it out. I realized it is much simpler than I thought. I can get the app list from the apps table itself in the database.
I would suggest creating a datalist to get all the APP IDs.
And then use datalist hashvariable ( #datalist.col.csv.ID.column# ) to get all the records. You can apply filter to the variable as well.
Please read here : Hash Variable#DatalistHashVariable
AppDefinitionDao appDefinitionDao = (AppDefinitionDao)AppUtil.getApplicationContext().getBean("appDefinitionDao");
appDefinitionList = appDefinitionDao.findPublishedApps("name", Boolean.FALSE, null, null);
for (Iterator i = appDefinitionList.iterator(); i.hasNext();) {
AppDefinition appDef = i.next();
//this will give you the app
}
I need to retrieve the app IDs that the user has so I can use them to get the necessary processes of the app IDs on a later field. Is there a way to do this?