<div style="width: 50px !important">
I want to set the pixel number dynamically by angularjs. The final width should also be calculated times a base pixel width. How could I achieve this?
<div ng-style="{{width: (model.number * 30)px !important}}">
This does of course not work, but shows what I'm trying to achieve. I'd like this do be done without having to introduce a controller function.