Hello,
I am tring to load a foundset onto a different form with the “use different found set on”, I know it may be a simple one but I am getting confused. I have no problem using the following code to load a single record.
var vRecordId = arguments[0] // will receive the recordId that your button method passed
controller.find();
productsid = vRecordId // search for the ID that was passed
controller.search()
//Show this form in print preview
controller.showPrintPreview();
fired off with
forms.stocktake_count_report.gotoDetails(productsid);
But if it is a group of records to be displayed in list view, how would I acheive this??
As always, many thanks in advance