मैं डायनामिक तरीके से डिव चौड़ाई सेट करने की कोशिश कर रहा हूं ng-style
लेकिन यह स्टाइल को लागू नहीं कर रहा है। यहाँ कोड है:
<div style="width: 100%;" id="container_fform" ng-controller="custController">
<div style="width: 250px;overflow: scroll;">
<div ng-style="myStyle"> </div>
</div>
</div>
नियंत्रक:
var MyApp = angular.module('MyApp', []);
var custController = MyApp.controller('custController', function ($scope) {
$scope.myStyle="width:'900px';background:red";
});
मैं क्या खो रहा हूँ?
फिडल लिंक: फिडल