Is there a way to automatically set a filter on a foundset? Something like:
foundsetSample.find();
foundsetSample.column1 = true;
foundsetSample.column2 = false;
foundsetSample.search();
Where the first condition with “column1” should always be equals to true for all queries on foundsetSample
Is there a way to automatically set it in Servoy’s blueprint for all foundsets? I can’t use the Auto Enter tab on Columns field because column1 is a calculation. I am guessing that stored calcs can do this but I would rather have a way which does not store this value in the database, if there is one.