Hi:D
I am working on a single record form application (A) with master detail form, I need to redirect the form to a specific record after some user event
(e.g. update, clicking a button etc.), currently I am trying to use javascript to trigger the “jump to” button in order to redirect to a specific record,
This method works fine if I am using it on a javascript button i created on the same application:
For example, I created a javascript button “Redir” on (A), whenever I click it, it triggers the “jump to” button to redirect me to a specific record.
It works fine even with or without master/detail forms.
But when I try to do something like this:
On another application (B), I created a button to set a session variable and redirect back to my form application (A), in order to notify my form application that it should run a javascript method that trigger the “jump to” button.
This only works when my form application (A) does not contain any master/detail form, if it contains any master/detail form, my application will get stuck in a processing message (From behind the message I can see that the single record form have already been directed to that specific record, however those related master/detail form haven’t).
Is there any possible cause?