I am not sure what will be best approach to handle the situation .
my angular js code look like:
<span class="something" ng-hide="onsomecondition">
{{value}}
</span>
.something{ text-align:left; padding:10px;}
Problem: in my dom val get updated but not able to display correct value in the screen .
but if i remove the class attribute it seems fine but than my styles are gone . Is there a way to make sure i can keep style and value updated correctly?
thank! in advance for any advice.