gxt 加载片段
我在 gxt 应用程序上使用了该代码,以获得一个加载片段项目:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link type="text/css" rel="stylesheet" href="gxt/css/gxt-all.css" />
<link type="text/css" rel="stylesheet" href="MyApp.css">
<title>MyApp</title>
</head>
<body>
<style>
#loading {
position: absolute; left: 45%; top: 40%; padding: 2px;
margin-left:-45px; z-index:20001; border:1px solid #ccc;
}
#loading .loading-indicator {
background:#eef;font:bold 13px tahoma,arial,helvetica;
padding:10px;margin:0;height:auto;color:#444;
}
#loading .loading-indicator img {
margin-right:8px; float:left; vertical-align:top;
}
#loading-msg {font:normal 10px arial,tahoma,sans-serif;}
</style>
<div id="loading">
<div class="loading-indicator">
<img src="gxt/images/default/shared/large-loading.gif"/>
myCustomerContacts<br />
<span id="loading-msg">Loading application...</span>
</div>
</div>
<script type="text/javascript" language="javascript" src="myapp/myapp.nocache.js"></script>
</body>
</html>
为什么加载,为什么加载片段在应用程序加载时不停止?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
加载应用程序后,您需要从 DOM 中删除加载 div。
这可以这样完成:
以下是 GWT 团队的 David Chandler 对您正在尝试做的事情的一个很好的总结:http://turbomanage.wordpress.com/2009/10/13/how-to-create-a-splash-screen-while-gwt-loads/
After your application is loaded you need to remove the loading div from the DOM.
This can be done like this:
Here is a good sum up by David Chandler from the GWT Team on what your are trying to do: http://turbomanage.wordpress.com/2009/10/13/how-to-create-a-splash-screen-while-gwt-loads/