2013-04-22 66 views
0

ExtJs應用程序中有網格。
在一行中,我想顯示一些關於300符號的文字。所以我需要一組高點到這一行。
我發現了一些examples使用ViewConfig:如何將高度設置爲單個外部網格的行?

viewConfig: { 
    getRowClass: function (record, rowIndex, rp, store) { 
     rp.tstyle += 'height: 50px;'; 
    } 
} 

但如何理解它集高度的所有行。但是如何只做一行呢?
另一個問題,它可能會發瘋,但它可能把備忘錄放入網格單元格?

回答

1

你可以要求在適當的值(通常是ID)或rowIndex位置,僅設置了它:

viewConfig: { 
    getRowClass: function (record, rowIndex, rp, store) { 
     if(record.id == 439){ //id is some field from the store model 
      rp.tstyle += 'height: 50px;'; 
     } 

     //or 
     if(rowIndex == 1){ 
      rp.tstyle += 'height: 50px;'; 
     } 
    } 
} 
+0

其真正的好。謝謝) – 2013-04-22 09:00:11

+0

ExtJS 4.1.1不再支持getRowClass tstyle屬性。 – 2014-02-10 07:38:49

相關問題