loading an empty foundset

Hi,

What’s the easiest way to load an empty foundset? Is there something like controller.loadRecords(empty) ?

Thanks,

Andrew

You can do this:

foundset.clearFoundset()

Hope this helps.

Another way is to:

var dataset = null
controller.loadRecords(dataset)
controller.show()

This eliminates the loading and then subsequent clearing of the foundset.

We needed this to remove a delay loading a list of records that all had large blobs.

Then, a user selects criteria from globals and records are loaded by method based on the globals.

NCM
FSCI