Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Angular change color of a cell with condition

I have a table and I should change the background color in some conditions:

<tbody class="custom-cells">
                  <tr *ngFor="let offer of offers" class="{{offer.step}}"
                    [ngStyle]="{'background-color': offer.status && offer.status=== 'error' ? red : null}"> // I have tried like this but doesn't works
                    
                    <td class="columnStyle">{{offer.date | date:'dd/MM/yyy'}}</td>
                    <td class="columnStyle grid"> {{offer.customer}} </td>
                    <td class="columnStyle"> {{offer.code}} </td>
                    <td class="columnStyle">{{offer.catalog ? offer.catalog : ''}}</td>
                    </td>
                  </tr>
                </tbody>

my offer status can be:
error, ok, waiting.

How can I change the background of the row with the status.offer??

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

>Solution :

You have an undefined variable red in your template. If you want to use the CSS value "red", you need to use quotes:

[ngStyle]="{'background-color': offer.status && offer.status === 'error' ? 'red' : null}"
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading