Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

For the life of me I cant seem to figure out why the style property is not getting updated. In my larger application it seems to work fine.

http://jsfiddle.net/ganarajpr/C2hRa/4/

Here is a fiddle which shows the issue I am currently facing. You will notice that the width and height are getting updated in the div when you change the input. But the style itself doesnt seem to be updating. Anyone can tell me what I am doing wrong here?

I have tried all the following scenarios

  1. using $scope.$apply.. - Throws an error stating $apply already in progress..
  2. $rootScope.$apply - same as above.
  3. Setting another variable in a service which is $watched in the other controller. - no change seen.

It would be really cool if someone can get me an answer to this. Also would be really happy if you can tell me why exactly it is not getting updated.

share|improve this question

1 Answer

up vote 3 down vote accepted

You had assigned the width and height values to the myprop style field on a one-off basis. So when you changed the width or height the myprop was not changing.

Change the myprop value to a function that computes its value instead...

http://jsfiddle.net/DyHHJ/

share|improve this answer
Again .. this solves the issue that I isolated into this context. What I would really like to know is how the two cases differ... – ganaraj May 25 '12 at 8:17
Sorry, what two cases? – Pete BD May 26 '12 at 12:27
I got my answer.. In fact it even solved some older issues of mine :) Thanks a lot... for the answer :) – ganaraj May 28 '12 at 10:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.