I have a RG that is LIST OF TEXTS (A, B, C) … plus item TEXT (D).
By default… TEXT D becomes the last item in the list. However, I need it to be first in the list.
I can’t use sorted: because it only does descending/ascending based on numbers or letters… and I’m using unique URLS.
How can I make the Plus Item #1 in the new list?
@NoCodeNinja, there might be better solutions but these 2 might work, you can use Keith’s ListShifter plugin or if you want to go Bubble native you can use custom states.
Using ListShifter:
- Configure the LIST OF TEXTS (A, B, C) as the list to shift
- Change the sort order of this list to the opposite of what you want.
- Use Add item to add the TEXT (D) to the list.
- Set the REVERSE list option to Yes.
- Configure the RG to use the listshifter as the data source
With custom states:
- Create 2 custom states, a list of texts (A) and a text (B)
- Add the value TEXT (D) to custom state B
- Add the value of custom state B to custom state A
- Set the datasource of the RG to custom state A merged with LIST OF TEXTS (A, B, C,)
1 Like