I have attempted to utilize ng-style
in order to implement dynamic color changes specifically for IE11 compatibility.
<tr ng-style="{'background-color':'{{section.Color}}'}">
Within my AngularJS
module, I have a feature that allows me to dynamically change colors:
<button type="button" colorpicker type="button" colorpicker-position="top" ng-model="section.Color" >
Change Color
</button>
For some reason, this functionality is not working as intended. However, if I use regular CSS styling, the color updates successfully. How can I troubleshoot and resolve this issue?