Sc_exit(ref) do not refresh a Grid

Back in a Grid by sc_exit(ref); it do not refresh the Grid.
Are there any workarounds to refresh a Grid by leaving the Blank application?
Thanks a lot!

1 Like

try sc_exit(sel)… I seem to recall this is the better option, but I haven’t used it in a while. It should repeat the data select.

Thanks, but it is also not working.
I give the user the hint to do a reload manually.
But his not a good option.

Are you opening your blank application as modal from the grid?

No, iframe.
I open it from a Grid and go back after changes to the Grid.

Hello

You can force a refresh of the Grid by using JavaScript in the onScriptInit event of the Blank application.
Use something like parent.window.location.reload(); to refresh the Grid when exiting the Blank application.
This will ensure that the Grid updates with any changes made during the Blank application session.

Thanks
(James)

If you want i tell you how, please send me a message to make a zoom session.

Thanks!
But parent.window.location.reload(); is not working in a Blank application.

Thanks! Yes we can do!
I live in Berlin CET.

Thinking about this, I’m not sure sc_exit() is meant to work with blank applications (If thats what you are doing?)
The manual says the scope is: |calendar application| Form application |Control Form |
so it might give strange results.
The other thing to try would just be a sc_redir() option, depending on your exact need.