I have a list page (Dynamics NAV 2013 R2) which includes a Repeater Group. To the side I have a FactBox which calculates a handful of statistics based on the records in the list (Total Amount, Number of Records etc.). I have a function (Action in the Ribbon) which updates the summary based on the filters that a user has applied.
I would however want to be able to perform this update automatically whenever the user applies a filter.
Is there any way to catch this event?
0
Answers
What you can do is keep the current value of GETFILTERS in a global variable and as soon as that changes in the OnAfterGetCurrRecord trigger you need to update.
Try to use Form - OnActivateForm() trigger.
Nav, T-SQL.
Nav, T-SQL.
That works perfectly. Here's my code: