最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Setting ag-grid detail row color based on a value in the detail field on runtime - Stack Overflow

programmeradmin1浏览0评论

I have spent the day trying to figure out how to do this and now come here to potentially find someone who has struggled with this problem as I have.

I have an ag-grid table that has row data with details. Lets simplify these to:

export interface ConfigDto{
   name?: String;
   keys?: KeyObject[];
}

export interface KeyObject{
   key:String;
   value:String;
}

this KeyObject[] is a list of values with the same datatype as a list that is fetched from the backend once one of the rows is selected ( triggered by the (selectionChanged) method in the component)

Depending on the list of KeyObject I receive from the backend, I would like to color the detail row a color.

So for instance, if the KeyObject of the detail row is contained in the list from the backend, the row should be green.

this isnt feasible to do on table init, as the values arent ( and shouldnt be) fetched from the backend yet, So i need a way to dynamically allocate a style post table load.

Any help would be appreciated.

I have spent the day trying to figure out how to do this and now come here to potentially find someone who has struggled with this problem as I have.

I have an ag-grid table that has row data with details. Lets simplify these to:

export interface ConfigDto{
   name?: String;
   keys?: KeyObject[];
}

export interface KeyObject{
   key:String;
   value:String;
}

this KeyObject[] is a list of values with the same datatype as a list that is fetched from the backend once one of the rows is selected ( triggered by the (selectionChanged) method in the component)

Depending on the list of KeyObject I receive from the backend, I would like to color the detail row a color.

So for instance, if the KeyObject of the detail row is contained in the list from the backend, the row should be green.

this isnt feasible to do on table init, as the values arent ( and shouldnt be) fetched from the backend yet, So i need a way to dynamically allocate a style post table load.

Any help would be appreciated.

Share Improve this question asked Apr 1 at 12:11 NobiliChiliNobiliChili 871 silver badge9 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can use either getRowStyle:

    getRowStyle: (params) => {
      if (params.data.status === 'active') {
        return { backgroundColor: '#e0f7e6' }; // Light green
      } else if (params.data.status === 'inactive') {
        return { backgroundColor: '#fce5dc' }; // Light red
      }
    }

Or use getRowClass:

    getRowClass: (params) => {
      if (params.data.isImportant) {
        return 'ag-row-highlight';
      }
    }

They will style based on the data inside the row.

发布评论

评论列表(0)

  1. 暂无评论