Thorn

@j

problem. I have a list of courses set up as enum in the column definition. The list of courses have been entered individually as Enum Values.

The list contains a mix of public and private courses.

I’m using a form view to add participants to the courses. However, I only want the public courses to appear in the dropdown list of courses (so that random people aren’t accidentally added to a private course). It doesn’t look like a filtered slice is working.

I also tried a formatting rule to strikethrough the private courses, but I’m guessing the enum list overrides all of this.

Solved Solved
0 2 129
1 ACCEPTED SOLUTION

kc3
Silver 4
Silver 4

I do not understand what "private" means in this context. Is it equivalent to "not available"? Then why have those classes in the list? Solution: remove private from the public list.

Or does "private" mean "available only for certain people", i.e. you are creating customized views after users have been identified? In this case, you could also keep the public list separate and union with the private courses available. Then you obtain a personalized list after the union.

View solution in original post

2 REPLIES 2

To address this, try creating a separate table or view specifically for public courses and then use that filtered data source for your dropdown. This way, only public courses will appear in the dropdown list. If you’re using a platform or tool that doesn’t support this directly, you might need to adjust your data setup or consult the documentation for more tailored solutions.

 
 

kc3
Silver 4
Silver 4

I do not understand what "private" means in this context. Is it equivalent to "not available"? Then why have those classes in the list? Solution: remove private from the public list.

Or does "private" mean "available only for certain people", i.e. you are creating customized views after users have been identified? In this case, you could also keep the public list separate and union with the private courses available. Then you obtain a personalized list after the union.

Top Labels in this Space