我需要根据列中的条件为 ag 网格中的整行提供背景颜色。我没有发现这样的例子,其中整行根据列中的某个值进行着色..
8 回答
先前的答案有些过时(尽管仍然正确且有效),现在我们对网格的样式有了更多的控制。你可以使用getRowStyle(params)
这个工作,就像这样:
gridOptions.getRowStyle(params) {
if (params.data.myColumnToCheck === myValueToCheck) {
return {'background-color': 'yellow'}
}
return null;
}
显然,myColumnToCheck
将是您正在检查值的列(与您在 colDef 对象的 id/field 属性中输入的名称相同),并且myValueToCheck
将是您希望该列必须使该行全部变黄的值。
我希望这对其他人有帮助。在包括 AG Grid 在内的任何表格或网格中,一个非常常见的用例是以高效的方式设置整个表格的整行的偶数/奇数背景颜色。此外,这需要在排序时仍然有效。
在 AG-GRID 中执行此操作的所有这些方式都是错误的。即使它们可以在没有排序的情况下工作,但当您使用排序时它们不会正确更新。这是由于 ag-grid 团队在本期https://github.com/ag-grid/ag-grid-react/issues/77中将其称为初始化时间属性。
// Initialization problem
getRowClass = (params) => {
if (params.node.rowIndex % 2 === 0) {
return this.props.classes.rowEven;
}
};
<AgGridReact
getRowClass={this.getRowClass}
>
// Initialization problem
getRowStyle = (params) => {
if (params.node.rowIndex % 2 === 0) {
return this.props.classes.rowEven;
}
};
<AgGridReact
getRowStyle={this.getRowStyle}
>
// Initialization problem
rowClassRules = {
rowEven: 'node.rowIndex % 2 === 0',
}
rowClassRules = {
rowEven: (params) => params.node.rowIndex % 2 === 0,
}
<AgGridReact
rowClassRules={this.rowClassRules}
>
// Trying to change the key so a rerender happens
// Grid also listens to this so an infinite loop is likely
sortChanged = (data) => {
this.setState({ sort: Math.random()})
}
<AgGridReact
key={this.state.sort}
onSortChanged={this.sortChanged}
>
基本上,网格中的大多数内容只被读取一次而不是再次读取,可能是出于性能原因以保存重新渲染。
以下是实现偶数颜色的正确方法:在 ag-grid 中添加偶数/奇数功能的正确方法是应用自定义 css 样式,如下所示:
您将需要覆盖/使用此处文档中提到的 ag 变量:https ://www.ag-grid.com/javascript-grid-styling/#customizing-sass-variables
在我们的例子中,变量的名称是 .ag-grid-even 类名,或 .ag-grid-odd 类名。如果您只是想要一种交替的颜色来帮助提高可见度,您当然只需要一个。为了我们的目的,我们只需要一个。
下面是这个过程在我们的 repo 中的样子: 1. 创建一个自定义 css 文件,覆盖/使用其中一些 ag-class 变量名称。我们称之为 ag-theme-custom.css(我相信它需要是一个 css 文件)。
注意:我们也有 sass 变量,所以这个文件只有一个注释,我在 css 中添加的这个颜色是我们变量 $GREY_100 的值,所以你不需要那个部分
如果您使用的是 AdapTable,那么最简单的方法是使用条件样式并将其应用于整行。这样做的好处是用户也可以轻松地在运行时运行。 https://demo.adaptabletools.com/style/aggridconditionalstyledemo
答案 2 是正确的,但使用的语法是错误的,并导致我试图解决它的几个问题。例如,试图缩小答案 2 代码。它确实有效,但据我所知,它不是正确的语法。
请注意,这可以内联完成,也可以使用外部函数完成。例如外部函数。
vm.gridOptions = {
columnDefs: columnDefs,
getRowStyle: getRowStyleScheduled
}
function getRowStyleScheduled(params) {
if (params.selected && params.data.status === 'SCHEDULED') {
return {
'background-color': '#455A64',
'color': '#9AA3A8'
}
} else if (params.data.status === 'SCHEDULED') {
return {
'background-color': '#4CAF50',
'color': '#F4F8F5'
};
}
return null;
};
您不能在一个命令中更改整行的背景颜色。您需要cellStyle
通过columnDefs
. 此回调将按行中的每个单元格调用。您需要通过更改所有单元格的颜色来更改行的颜色。
请参见以下列定义
{
headerName: "Street Address", field: "StreetAddress", cellStyle: changeRowColor
}
您需要为所有列执行此操作。
这是你的changeRowColor
功能。
function changeRowColor(params) {
if(params.node.data[4] === 100){
return {'background-color': 'yellow'};
}
}
如果第三个单元格的值为 100,它会更改行的颜色。
您可以通过以下方式将 CSS 类添加到每一行:
rowClass:为所有行设置 CSS 类的属性。提供一个字符串(类名)或字符串数组(类名数组)。
getRowClass:回调以分别为每一行设置类。
<ag-grid-angular
[rowClass]="rowClass"
[getRowClass]="getRowClass"
/* other grid options ... */>
</ag-grid-angular>
// all rows assigned CSS class 'my-green-class'
this.rowClass = 'my-green-class';
// all even rows assigned 'my-shaded-effect'
this.getRowClass = params => {
if (params.node.rowIndex % 2 === 0) {
return 'my-shaded-effect';
}
};
您可以通过网格选项rowClassRules定义可应用于包含某些 CSS 类的规则。
以下代码段显示了使用函数的 rowClassRules 和 year 列中的值:
<ag-grid-angular
[rowClassRules]="rowClassRules"
/* other grid options ... */>
</ag-grid-angular>
this.rowClassRules = {
// apply green to 2008
'rag-green-outer': function(params) { return params.data.year === 2008; },
// apply amber 2004
'rag-amber-outer': function(params) { return params.data.year === 2004; },
// apply red to 2000
'rag-red-outer': function(params) { return params.data.year === 2000; }
};
我为偶数行和奇数行设置了不同的颜色,你可以用任何方式做到这一点。
$scope.gridOptions.getRowStyle = function getRowStyleScheduled(params){
if(parseInt(params.node.id)%2==0) {
return {'background-color': 'rgb(87, 90, 90)'}
}else {
return {'background-color': 'rgb(74, 72, 72)'}
}
};
如果您不需要有条件地设置背景颜色(基于行数据),则不建议使用rowStyle,如行样式文档页面所述:
// set background color on even rows
// again, this looks bad, should be using CSS classes
gridOptions.getRowStyle = function(params) {
if (params.node.rowIndex % 2 === 0) {
return { background: 'red' };
}
}
相反,您可以使用 css 更改行颜色:
@import "~ag-grid-community/dist/styles/ag-grid.css";
@import "~ag-grid-community/dist/styles/ag-theme-alpine.css";
@import "~ag-grid-community/dist/styles/ag-theme-balham.css";
@import "~ag-grid-community/src/styles/ag-theme-balham/sass/ag-theme-balham-mixin";
.ag-theme-balham {
@include ag-theme-balham((
// use theme parameters where possible
odd-row-background-color: red
));
}