I have a Method with the following line:
databaseManager.refreshRecordFromDatabase(foundset, -1);
I get the following error:
“foundset” is not defined.
Callstack:
force_relookup
I copied it straight out of the manual. When I do it like this:
databaseManager.refreshRecordFromDatabase('foundset', -1);
It runs, but I can’t see that it is actually working. When I change data from an outside source, I don’t see it changing in Servoy. Is this the correct way to do it?