how post entire page in GWT form panel

2019-06-27 19:11发布

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

标签: java forms gwt
1条回答
疯言疯语
2楼-- · 2019-06-27 19:56
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();.

查看更多
登录 后发表回答