I would know how can I have an AlfList in a dialog? I tried this simple test, but it doesn't work …
The original test was a a click on a propertylink (in a alfList) which would generate a dialog which would contain a list - (precision if I have to do something different) The problem is that the worth I obtain is a simple dialog, and the best a dialog with an error explaining a difficulty to render the view (sorry I am French)
I tested to add the last version of aikau (the 1.0.31) in my project (path : project>/target/conteneurs-share-war/WEB-INF/lib) and done a command "mvn install -Pamp-to-war -DskipTests=true" but nothing changed…
It looks like you've got an AlfList immeidately inside another AlfList - that's not going to work. Also, as you've also pointed out you need to set the "itemsProperty" because the REST API you've called uses the attribute "data" and not "items" (which is the default) to reference the array of groups.
This part would be in the "config" and not before!! <blockcode> waitForPageWidgets: false, loadDataPublishTopic: "ALF_CRUD_GET_ALL", loadDataPublishPayload: { url: "api/groups" }, itemsProperty: "data", </blockcode>
There is the good code (with some changes due to my tests)