In fact, the problem is due to [1], which returns a jQuery object that does not have any reference to screen, so the view is not related nor the client actions are executed.
> Cédric Krier<cedric.krier@b2ck.com> added the comment:
>
> msg27043 is not clear about what is happening.
> What jQuery object?
> Are you sure you are not testing with the patch of #5700 (closed)
No I'm not testing with #5700 (closed). I will rephrase the explanation:
THe problem is that the code is searching for a parent. dialog before the current is closed, as it's an async operation. So we have to wait until the current dialog is closed to search for the parent one.
On 2016-07-14 10:27, Sergi Almacellas Abellana wrote:
> THe problem is that the code is searching for a parent. dialog before the current is closed, as it's an async operation. So we have to wait until the current dialog is closed to search for the parent one.
This does not make sense for me. The parent is created before the
children so it must be there.
> Cédric Krier<cedric.krier@b2ck.com> added the comment:
>
> On 2016-07-14 10:27, Sergi Almacellas Abellana wrote:
>> >THe problem is that the code is searching for a parent. dialog before the current is closed, as it's an async operation. So we have to wait until the current dialog is closed to search for the parent one.
> This does not make sense for me. The parent is created before the
> children so it must be there.
But the code is filtering on visible, so although it is there it's still visible, so it's now picking the correct dialog. That's why we must wait until the event it's triggered and then it's not visible.
On 2016-07-14 10:57, Sergi Almacellas Abellana wrote:
>
> Sergi Almacellas Abellana <sergi@koolpi.com> added the comment:
>
> > Cédric Krier<cedric.krier@b2ck.com> added the comment:
> >
> > On 2016-07-14 10:27, Sergi Almacellas Abellana wrote:
> >> >THe problem is that the code is searching for a parent. dialog before the current is closed, as it's an async operation. So we have to wait until the current dialog is closed to search for the parent one.
> > This does not make sense for me. The parent is created before the
> > children so it must be there.
>
> But the code is filtering on visible, so although it is there it's still visible, so it's now picking the correct dialog. That's why we must wait until the event it's triggered and then it's not visible.
> Cédric Krier<cedric.krier@b2ck.com> added the comment:
>
> On 2016-07-14 10:57, Sergi Almacellas Abellana wrote:
>> >
>> >Sergi Almacellas Abellana<sergi@koolpi.com> added the comment:
>> >
>>> > >Cédric Krier<cedric.krier@b2ck.com> added the comment:
>>> > >
>>> > >On 2016-07-14 10:27, Sergi Almacellas Abellana wrote:
>>>>> > >> >THe problem is that the code is searching for a parent. dialog before the current is closed, as it's an async operation. So we have to wait until the current dialog is closed to search for the parent one.
>>> > >This does not make sense for me. The parent is created before the
>>> > >children so it must be there.
>> >
>> >But the code is filtering on visible, so although it is there it's still visible, so it's now picking the correct dialog. That's why we must wait until the event it's triggered and then it's not visible.
> So we could also take the second one?