TabPanel的属于里layoutOnTabChange:true,这个是一定要加的
每一个tab的布局用着fit。
或者tab用bordel布局..grid设成region:'center'
JS 跳出iframe框架
(1)session过期后登陆页面跳出iframe页面问题
登陆页面增加javascript:
function window.onload()
{
if(window.parent.length>0)
window.parent.location=location;
}
或者:
<script>
if (window != top)
top.location.href = location.href;
</script>
(2)自动跳出iframe的代码
<script type="text/javascript">
if (top.location !== self.location) {
top.location=self.location;
}
</script>
(3)在框架页内的退出操作:
<script type="text/javascript">
if (top.location !== self.location) {
top.location = "../index.jsp";//跳出框架,并回到首页
}
</script>
跳出多级iframe
一个ifame中的跳出框架的方法
function gotoLogin(){
if(self.frameElement && self.frameElement.tagName=="FRAME"){
// 页面在iframe中时处理
window.parent.location = "${pageContext.request.contextPath}/login.jsp";
}else{
window.location = "${pageContext.request.contextPath}/login.jsp";
}
每一个tab的布局用着fit。
或者tab用bordel布局..grid设成region:'center'
JS 跳出iframe框架
(1)session过期后登陆页面跳出iframe页面问题
登陆页面增加javascript:
function window.onload()
{
if(window.parent.length>0)
window.parent.location=location;
}
或者:
<script>
if (window != top)
top.location.href = location.href;
</script>
(2)自动跳出iframe的代码
<script type="text/javascript">
if (top.location !== self.location) {
top.location=self.location;
}
</script>
(3)在框架页内的退出操作:
<script type="text/javascript">
if (top.location !== self.location) {
top.location = "../index.jsp";//跳出框架,并回到首页
}
</script>
跳出多级iframe
一个ifame中的跳出框架的方法
function gotoLogin(){
if(self.frameElement && self.frameElement.tagName=="FRAME"){
// 页面在iframe中时处理
window.parent.location = "${pageContext.request.contextPath}/login.jsp";
}else{
window.location = "${pageContext.request.contextPath}/login.jsp";
}
}
多个
function gotoLogin(){
var t = self.frameElement;
if(t && (t.tagName=="FRAME"||t.tagName=="IFRAME")){
// 页面在iframe中时处理
window.top.location = "${pageContext.request.contextPath}/login.jsp";
}else{
window.location = "${pageContext.request.contextPath}/login.jsp";
}
}