Próbuję ustawić szerokość div dynamicznie, ng-style
ale nie stosuję stylu. Oto kod:
<div style="width: 100%;" id="container_fform" ng-controller="custController">
<div style="width: 250px;overflow: scroll;">
<div ng-style="myStyle"> </div>
</div>
</div>
Kontroler:
var MyApp = angular.module('MyApp', []);
var custController = MyApp.controller('custController', function ($scope) {
$scope.myStyle="width:'900px';background:red";
});
czego mi brakuje?
Fiddle link: Fiddle
ngStyle
akceptuje mapę:$scope.myStyle = { "width" : "900px", "background" : "red" };
Fiddle
źródło