标签: smartgwt
我想在点击保存按钮后刷新页面。
任何人都可以告诉我,如何在smartgwt中做到这一点?
答案 0 :(得分:2)
您可以使用gwt的窗口类。看看如何做到这一点 -
How to reload web page in GWT
确保你引用gwt的com.google.gwt.user.client.Window类而不是smartgwts com.smartgwt.client.widgets.Window类
com.google.gwt.user.client.Window
com.smartgwt.client.widgets.Window
Window.Location.reload()是您必须致电的。
Window.Location.reload()