After the CFG launches, and the user hits save, it updates some OrderDtl values in the database, but doesn’t refresh the window/grid. So the button will still say “Configure” or “Configuration” and not switch based on its state.
I’m trying to make it do so, but can’t seem to find which event trigger it with. For example I’m telling it on column “LastConfigTime” change, then do x, but that only triggers on manual changes to the grid, not database changes.
I can’t do on button click as that is just what launches the configurator/
I thought this was something that Epicor had fixed, so it may be a version issue, if not it is something they should fix. If not a version issue I would open a ticket.
Looks like it calls OnClick_toolRefresh on every event path but maybe that’s just my version (2025.2.7)
In dev tools do you see an event-next: SysRefresh action and a GetByID request after returning from Configurator?
If not, then it’s not refreshing and maybe it’s your version. You could try adding an event triggered after_OpenConfigurationRuntimeEntry with event-next: OnClick_toolRefresh action.
I’m on 2024 so maybe it just was not fixed yet. I do not see those no.
That is the solution I came up with for now as well, unfortunately it just means the user is always one line behind, as it will refresh after they press configure, but that will only update any previous lines, not the one it is now launching for.