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!

How to configure "contains" filter to show using a button in an interactive grid?

Gal VerlicMay 26 2025

I have an interactive grid and have set up a button which when clicked on would show only the numbers in my “ARTGRUPRNR” column which contain “10, 11 or 12” as the numbers. The column is a number field. I know how to use equals or not equals but I do not know how to use the contain function

apex.region("FVM_1").call("addFilter", {
type: "column",
columnType: "column",
columnName: "ARTGRUPNR",
operator: "contains",
value:(10, 11, 12)
});

Any help would be much appreciated, thank you :)

This post has been answered by Karel Ekema on May 26 2025
Jump to Answer
Comments
Post Details
Added on May 26 2025
2 comments
129 views