Javascript 最大化窗口时icontab上的SAPUI5母版页溢出

Javascript 最大化窗口时icontab上的SAPUI5母版页溢出,javascript,sapui5,Javascript,Sapui5,我正在开发应用程序[SAPUI5]。这是一个基于主细节的应用程序。我在internet explorer中遇到了一个问题,在最大化窗口大小的同时,我的页面内容没有变成原始大小 var resizeListener = function(){ $(window).one("resize",function(){ //unbinds itself every time it fires if(scroll_ID != undefined){

我正在开发应用程序[SAPUI5]。这是一个基于主细节的应用程序。我在internet explorer中遇到了一个问题,在最大化窗口大小的同时,我的页面内容没有变成原始大小

var resizeListener = function(){
      $(window).one("resize",function(){ //unbinds itself every time it fires
          if(scroll_ID != undefined){
              var footerHeight = window.innerHeight - thatDetail.byId("SplitMasterFooterid").getDomRef().getBoundingClientRect().top;
              var tablePositionTop = thatDetail.byId(scroll_ID).getDomRef().getBoundingClientRect().top;
              var scrollHeight = window.innerHeight - footerHeight - tablePositionTop - 20; 
              thatDetail.byId(scroll_ID).setHeight(String(scrollHeight + "px"));  
        }         
        //resize things
        setTimeout(resizeListener,100); //rebinds itself after 100ms
      });
    }
    resizeListener();

谢谢。请帮我解决这个问题

有人对这个问题有想法吗?有人对这个问题有想法吗?