I am creating a report download form in GWT. Downloading report document takes 2-3 minutes and I am opening it in new tab, but new tab is blank and waiting for the server response. Now I want to display some custom message like "File is downloading, don't close this tab". How to do this in GWT? My current code is like below which open blank page with URL..
FormPanel m_downloadForm = new FormPanel();
m_downloadForm.setMethod(FormPanel.METHOD_POST);
m_downloadForm.setAction(url);
m_downloadForm.getElement().<FormElement>cast().setTarget("_blank");
Hidden h = new Hidden();
h.setName("OkBtn" );
h.setID( "OkBtn" );
h.setValue("Create Report");
m_downloadForm.add(h);
m_rootContent.add(m_downloadForm);
This code opens new tab with no message successfully and document is being downloaded. I want to display some message on new tab.