Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

create an filter on interactive grid with operator = in

martvFeb 4 2020 — edited Feb 10 2020

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?

pastedImage_0.png

pastedImage_1.png

pastedImage_2.png

pastedImage_4.png

Greetings

This post has been answered by martv on Feb 10 2020
Jump to Answer
Comments
Post Details
Added on Feb 4 2020
2 comments
948 views