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 :)