GWT 中的消息框
如何在 GWT 中显示 AJAX“消息框”?我知道我可以使用 Window.alert() 函数,但这太丑陋/烦人了。有内置函数吗?
谢谢你!
伊万
How do I show a AJAX "Message Box" in GWT? I know I can use the Window.alert()
function, but that's too ugly/annoying. Is there a built-in function for?
Thank you!
Yvan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是自定义警报小部件的简单实现(将其修改为您想要的内容):
并像使用它一样(注意最后的 center() 方法,它实际上显示了小部件):
Here is simple implementation of custom alert widget (modify it to what you want):
And use it like (note center() method at the end, it actually shows the widget):
您可以使用对话框代替。
You can use DialogBox instead.