Skip to main content
Announcements
Global Transformation Awards! Applications are now open. Submit Entry
cancel
Showing results for 
Search instead for 
Did you mean: 
rsdhavle
Creator III
Creator III

Dynamic Actions used in text box can be passed in list box?

I have defined two actions in text box which represents max of month on one field and max of week on one field.. When i click on text box the data gets filtered in table. Now the requirement is I want to show these two filter in a list box like in drop down or list box i should see the option of filtering by max of month or Week which should get applied on table.

What is the way to show it in a drop down box

1 Reply
marcus_sommer

You will need a table-field for the listbox, maybe so:

DataFilter:

Load * Inline [

Filter

maxMonth

maxWeek

];

and then you could put your actions in an OnChange-Trigger on this field Filter.

- Marcus