Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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