Hi,
I want to create a filter in an interactive grid with an operator = <IN> .
region has id = ld
For test purpose I defined in DA
When: Page load
No other restrictions
On True:
Action: execute javascript code
Code:
apex.region("ld").call("addFilter",
{ type : "column"
, columnType : "column"
, columnName : "LDKEY"
, operator : "IN"
, value : "s\_msp5; OWLNamedIndividual\_000029"
, isCaseSensitive: false
});
When I now start the page, I see the filter but the condition seems not correct because no records are displayed.
However, when I just open this filter in the APEX-page and only do <save> the filter then suddenly it works.
If I look at the JavaScript source code I see no difference in both situations, any ideas?




Greetings