user1567615
user1567615

Reputation: 188

how post entire page in GWT form panel

While using GWT FormPanel, after submitting the form, it posts form but does not redirect to the action url. Can any body help me?

Upvotes: 4

Views: 566

Answers (1)

mirzaei
mirzaei

Reputation: 363

formPanelObject.getElement().<FormElement>cast().setTarget("");

by this line you changing the target parameter of the form and now the main page redirected to the action url after calling formPanelObject.submit();.

Upvotes: 5

Related Questions