Long story short: I’ve created a graph extension of the CustomerMaint graph. The extension adds a button to the attributes tab that instantiates a custom graph which changes the value of one of the attributes. Upon completion, I want the attributes grid to refresh and show the updated value, however I’ve tried…
Base.Answers.View.RequestRefresh();
and
Base.Answers.View.Clear();
Base.Answers.View.RequestRefresh();
… but the grid will not refresh.
The logic successfully changes the value and clicking the refresh button on the grid shows me exactly what I want, but I don’t know how to call that Refresh in the code or trigger it in the ASPX.
Any Ideas?