我想要一个只有两列的网格,一个用于名称,另一个用于百分比。最后一行将以“总计”作为名称,总百分比将为“百分比”。此行的样式与其他行的样式不同。请指导我如何实现这一目标。 感谢..
答案 0 :(得分:11)
有一个网格功能可以完全实现。文档中介绍了here以及如何使用它的一些示例。
您还可以通过在CSS中提供自己的x-grid-row-summary
类实现来自定义样式。
修改强>
以下是设置摘要行样式的一些示例,您可以看到有几种方法可以解决这个问题。认识到在viewready
事件发生之前无法引用摘要行,它在afterrender
事件中尚未就绪,因此我将所有这些逻辑放在viewready
侦听器中:
Ext.create('Ext.grid.Panel', {
features: [{
ftype: 'summary'
}],
// other grid configs ...
listeners: {
viewready: function(grid) {
// get reference to the summary row
var summaryRow = grid.view.el.down('tr.x-grid-row-summary');
// this will apply a css class to the row, in this example,
// I am applying the extjs grid header style to my summary row
summaryRow.addCls('x-grid-header-ct');
// or, to do it all in javascript as you mentioned in the comment
// first you would create a style object, I took these style
// properties from the .x-grid-header-ct
aStyleObject = {
cursor: 'default',
zoom: 1,
padding: 0,
border: '1px solid #d0d0d0',
'border-bottom-color': '#c5c5c5',
'background-image': 'none',
'background-color': '#c5c5c5'
}
// then you pass the style object using setStyle
summaryRow.setStyle(aStyleObject);
// or you could set the style for each cell individually using
// addCls or setStyle:
Ext.Array.each(summaryRow.query('td'), function(td) {
var cell = Ext.get(td);
cell.addCls('some-class');
// or
cell.setStyle(anotherStyleObject);
});
}
}
});
答案 1 :(得分:0)
如果我们有摘要行(like this),我们只需在特定页面上使用CSS。
<style>
.x-grid-row-summary .x-grid-cell{
background-color: #f00 !important;
font-size: x-large !important;
}