124
Views
3
Comments
Solved
Add a custom last row in list group

Hi guys!


Currently, I am a bit stuck on an issue. I have a list of records obtained from an aggregates, which I display inside a list group widget. However, I want to add an extra list item after the last records from the aggregate which displays some custom elements (to be precise, it add an input field to add new items to the list).

All the logic is working, however I cannot seem to find a suitable way to add this extra list item inside the list group. Are there any workarounds?

Cheers,


Jochem

2025-11-18 12-43-07
Mariana Junges
Champion
Solution

Hello,


There is the possibility to add an if and check if the length of the list is equal to current.

If it is the same, it appears what you want to appear only after the last item, otherwise (in the false branch) it doesn't put anything.

2020-12-02 08-35-00
Jochem Vlug

Hi Mariana,


Thank you for your response. This seems to work when I use the following If-statement:

GetShipTypes.List.CurrentRowNumber = GetShipTypes.List.Length - 1

Unfortunately, I have not found a pretty way to get rid of the OS warning message, but this seems to work fine for my use case.

2025-11-18 12-43-07
Mariana Junges
Champion

add a container in the children that the message will go out. :)

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.