Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 18 Oracle Analytics Lounge
- 221 Oracle Analytics News
- 44 Oracle Analytics Videos
- 15.8K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 83 Oracle Analytics Trainings
- 15 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
How to apply filter using Parameter attribute for Exclude checkbox ?

Hi
I have embedded the OAC Workbook within my website.
I need to apply filter via my code by using parameter attribute for "Exclude" checkbox available in the List Filter.
I can able to apply List Filter values, Even Top Botton N. But not able to apply the same using "Exclude" though I've created a parameter for the same.
Answers
-
if I understand correctly, your code populates the parameter. If so you need to check the Exclude option of your filter and then also add your parameter to the filter section of your visualisations.
In the example above, I can set the value of the Exclude Year parameter and once it's added to the filter section of the visualisation, the value of the parameter is excluded.
0 -
0
-
Thanks for the reply. What I need is the format same like below code,
I need to apply filters after embedding by the Javascript code
Eg: Add Technology & Furniture to Category(Dashboard Filter) and I need to check the checkbox "Exclude".
var parameters={
"p1n": "Pararm_Category",
"p1v": ["Technology","Furniture"],
"p2n": "Pram_IsExcludesVertical",
"p2v": 1,
};0