Foundset with automatic filter

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.

Are you aware of the existence of TableFilters and FoundSet filters?

Paul

This explains about adding foundset filters:

http://wiki.servoy.com/display/public/D … ilterParam

pbakker:
Are you aware of the existence of TableFilters and FoundSet filters?

Paul

Nope, that’s why I’m asking.

bobcusick:
This explains about adding foundset filters:

http://wiki.servoy.com/display/public/D … ilterParam

Thanks very much, Bob.