Hi,

We are using GXT 2.3.1. The FormPanel(java.lang.String target) is causing opening of new blank tab on safari browser after submit.

We are using below code:


FormPanel form= (target != null) ? new FormPanel(target): new FormPanel();


The bug does not get replicated on simply using the default constructor of formPanel as below:


FormPanel form = <strong>new</strong> FormPanel();


Is there a workaround for closing the extra tab in case of FormPanel(java.lang.String target) constructor?


Thanks,

Shweta