2013-09-25 46 views

回答

0

试试这个

.app-Grid table tr.x-grid-row, 
.app-Grid table tr td.x-grid-cell 
{ 
    height: 36px; 
    border-color: #555; 
} 
//app-Grid is the css class applied to your grid 

网格:

Ext.extend(Ext.grid.EditorGridPanel, { 
     title: 'Service Request Types and Rates', 
     height: 210, 
     cls: 'app-Grid', 
     columnLines: true 
}); 
+0

我的CSS类添加到我的网格,但不添加单元格边框。 – Duleep

+0

'MyEditorGrid3Ui = Ext.extend(Ext.grid.EditorGridPanel,{ 标题: '服务请求类型和速率', 高度:210, 边界:假, bodyStyle:' 边框颜色:#A8A8A8; \ nborder- style:solid; \ nborder-width:1px; \ nz-index:55000;', cls:'app-Grid', columnLines:true, hideBorders:true, bodyCssClass:'app-Grid。', id:'','is by grid – Duleep

+0

请看看我的编辑。 – Dev

相关问题