2014-12-23 150 views
2

中不起作用,即使網格的存儲足夠長以使網格溢出,網格的滾動條也不能正常工作!extjs 5網格的滾動條在邊框佈局面板中的邊框佈局面板

如果我的網格在沒有邊框的佈局面板中,滾動條是可以的,但是當我把網格放在邊框佈局面板中時,要麼沒有滾動條,要麼是無效的滾動條!

{ 
     // what i want is to make this grid to scroll ! the scroll-bar is nested in a border layout panel. 
     xtype: 'grid', 
     title: 'west bottom grid(I am begging for your scrollbar !)', 
     columns: [{ 
      text: 'header', 
      dataIndex: 'header' 
     }], 
     store: Ext.create('MyApp.OverflowStore'), //this store is long enough to make the grid overflow 
     autoScroll: true 
    } 

全碼:看煎茶小提琴:https://fiddle.sencha.com/#fiddle/ffv

,如果有人可以幫助給電網一個正確的滾動條?

回答

6

您應該確保您爲組件的容器設置了佈局,並確保像網格這樣的容器具有彈性值來正確分配空間。 See corrected fiddle here

+0

這是正確的。將佈局設置爲正確的值非常重要。不僅如此,如果您對任何面板使用DOCK屬性,甚至需要考慮它被使用的方式。 – aMazing