Inline styles resize cells - Solution not working
Hi, I am trying to solve the issue of the resized cells when adding tags in the inline style cell property. I have followed all the steps of the solution in the support article (https://collaborate.pega.com/question/inline-styles-resize-cells-solution-not-working) but it does not work... the background-color does not change.
This is the code I add in the non-AutoGenerated section:
<style>
.myclass{
<pega:choose>
<pega:when test=".WeightingA == 'Low'">
background-color:#58D3F7;
</pega:when>
<pega:when test=".WeightingB == 'Medium'">
background-color:#58ACFA;
</pega:when>
<pega:when test=".WeightingC == 'High'">
background-color:#5882FA;
</pega:when>
<pega:when test=".WeightingD == 'Must'">
background-color:#5858FA;
</pega:when>
</pega:choose>
}
</style>
And I have added the section in the section that contains the repeating grid, etc... But no effect after running the section.
***Updated by moderator: Lochan to add Categories***