Refresh entire form in AX 2012?
axapta, dynamics-ax-2012, x++
Solution
You may override the `research` method on a datasource:
public void research(boolean _retainPosition = false)
{
super(_retainPosition);
other_ds.research(_retainPosition);
}
The `other_ds` is a datasource not joined by the current datasource.
Problem
I'm currently working with a form that has a grid at the bottom. Whenever I hit f5, the grid refreshes, but the rest of the form does not. What can I do to make the entire form refresh it's data? Thanks.