Option set & Repeating Group

Hi all.
I am having problems to retrieve data from a repeating group. In my index page, there is a repeating group that shows all the types of Categories that I stored in Option Sets. The problem comes when I want to click in the box of this repeating group and go to another page, which the title is the name of the Category, nothing appears. I tried so many different ways but no possible.




  1. You will change the data type of the page task to category in the properties box of the page.
  2. When going to this page, the data to send will be Parent group's category, not its display.
  3. When playing or displaying it with in the task page you will use current page's category.
1 Like

Thank @hergin . Unfortunately it is not working.
1 I cant select the option set here, only Data Types


2 I cant select, Parent group’s category

Ahh got it. I didnt recognize you cant select option set as page type. In that case, I would probably change category to a datatype instead. So the setup I mentioned works, because it is the right way instead of manually parsing things from URL params.

If you don’t want to do this change, you can pass it on as a parameter to the URL and in the task page, whenever you need it, you will get it by using get param from page URL source and manually search for that option with that display.

Or you can do the same and create a custom state at page load (of type that option set), get param from page url again and set it to the custom state, so you can reuse it in anywhere.