Hi!
To improve speed response inserting a record in a detail form of a Master/Detail App, I had implemented a store-procedure that I call on the ajax onblur event, but I need to refresh the detail form using ajax.
I probe whith a javascript method that executes:
document.getElementById(‘nmsc_iframe_liga_form_detail_form’).contentDocument.location.reload(true);
but it fails when I call it from the detail form.
I have probed with sc_redir that calls the master form, but this causes a very annoying screen refresh, specially when the detail form have a lot of lines…
Anybody knows how perform this refresh using ajax, in order to achieve faster and friendly response?
Because I use store-procedures, I need charge the last inserted record to the detail form.
The contraint is to do this without any type of scrolling…
Thanks in advance…