List Sorting Problem

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:

  1. Configure the LIST OF TEXTS (A, B, C) as the list to shift
  2. Change the sort order of this list to the opposite of what you want.
  3. Use Add item to add the TEXT (D) to the list.
  4. Set the REVERSE list option to Yes.
  5. Configure the RG to use the listshifter as the data source

With custom states:

  1. Create 2 custom states, a list of texts (A) and a text (B)
  2. Add the value TEXT (D) to custom state B
  3. Add the value of custom state B to custom state A
  4. Set the datasource of the RG to custom state A merged with LIST OF TEXTS (A, B, C,)
1 Like