当前位置: 代码迷 >> JavaScript >> ext4 tree横向滚动条不出来,该如何解决
  详细解决方案

ext4 tree横向滚动条不出来,该如何解决

热度:169   发布时间:2012-09-14 23:00:49.0
ext4 tree横向滚动条不出来
var tree = Ext.create('Ext.tree.Panel', {
  id: 'tree',
  store: store,
  width: 200,
  renderTo:'container',
  height: 300,
  //rootVisible: false,
  //useArrows: true,  
  //frame: true,  
  //title: 'Check Tree',
  //autoContainer:true,
  //scroll:true,
  autoScroll:true,
代码如上,纵向滚动条能自动出来,无论autoScroll是true还是false;
火狐中也一样,但是横向被遮盖就会...
ie8就被遮盖

------解决方案--------------------
bodyStyle :"overflow-x:hidden;overflow-y:auto",
  相关解决方案