search within results

Hi to all,

I have a question more particular.
I have a form that display the detail of a product and a button the open a dialog form (table) that display all the equivalent product. To make this a perform this:

fs = databaseManager.getFoundset(blabla, table_equivalent);
fs.find();
fs.code = foundset.relation1_to_table_equivalent.code;
fs.id_region = ...
fs.type = ...
fs.search();
formTable.foundset.loadRecords(fs);
...and show a form in a dialog window.

The fields on the formTable are in a relation.
In this form i have a text_field and i want to perform a “search within results” for move the cursor within results of the precedent query. Is possible to make this?

Thanks in advance.

Yes, you can do this by giving parameters at the search command like this:

fs.search(false, true)

This will not clear the current foundset and reduces it with the found results.

Thanks Vincent,
I will try it immedialty.

Bye