
Hi,
I have a Form which has a grid displaying my table. Now I created an internal class to update / delete my table. The class is then call by a menu item button, put at the top action panel.
How to refresh again my grid ?
To get the current selected, I'm using args.record(), but then I don't know how to refresh that grid after.
Kindly help.
Hi Lars Volt,
You can get the caller DataSource and do the refresh.
FormDataSource fds = _args.record().datasource(); fds.executreQuery(); fds.refresh();
Thanks,
Girish S.