Reputation: 21292
I have some drop-down filters for my reports.
I want to make a button to Clear All Filters
when the user clicks it.
This button needs to:
How do you set the values of other items from a button click event?
Upvotes: 0
Views: 786
Reputation: 142788
One option is to create a process which will set items' default values, e.g.
:P1_FISCAL_QUARTER := 'ALL';
:P1_FREQUENCE := 'ALL';
Its (button's) default action is "Submit" anyway; just set this process to run when P1_BTN_CLEAR_ALL
(if that's its name) button is pressed.
Upvotes: 1