Please see the solution to another question provided by ud3323: http://jsfiddle.net/ud3323/ykL69/. This solution highlights the changed value using the red color. I have an additional requirement: if the value has increased highlight in green color, if it has decreased highlight in red color. For this, I need to know the old and the new values in my observer. Is there any way to do this?

P.S. Embers docs do not say anything about what's available in the observer function. All I can tell from the example is that since the observer is defined in the itemRowView, "this" points to the itemRowView.

link|improve this question

71% accept rate
feedback

2 Answers

up vote 3 down vote accepted

When observers fire, they are called with the arguments obj, keyName, value. In a typical observer, value is the new, post-change value.

In addition to that typical observer type, there are also beforeObservers. A beforeObserver fires before a property changes. So the value argument contains the pre-change value. You set up this type of observer using Ember.addBeforeObserver.

That would give you what you need to achieve your goal. I've forked the fiddle you provided to demonstrate this here: http://jsfiddle.net/V3eZN/1/

link|improve this answer
Ember.addBeforeObserver is much cleaner. Thanks Luke! – Naresh Feb 11 at 6:18
1  
BTW, I recently noticed that there is a observesBefore extension on function, so the code can be made nicer as in jsfiddle.net/ye3M2 – Luke Melia Feb 14 at 21:24
feedback

Use willInsertElement to store the initial value, and upon change of the value, compare the two:

Quotes.itemRowView = Ember.View.extend({
    tagName: 'tr',

    initialValue: null,

    willInsertElement: function(){
        var value = this.get('content').value;
        this.set('initialValue', value); 
    },

    valueDidChange: function() {
        // only run if updating a value already in the DOM
        if(this.get('state') === 'inDOM') {
            var new_value = this.get('content').value;
            // decreased or increased?
            var color =  (new_value > this.get('initialValue') ) ?
                'green' : 'red' ;
            // store the new value
            this.set('initialValue', new_value);
            // only update the value element color
            Ember.$(this.get('element')).find('.quote-value').css('color', color);
        }
    }.observes('content.value')
});

Take a look at the jsfiddle http://jsfiddle.net/ykL69/15/

link|improve this answer
Thanks Zack. That works very well. However, if my understanding is correct, there is one bug in this code. It seems that willInsertElement() is called only once (when the element is inserted initially). Thus to keep the colors coming up correctly, at the end of valueDidChange() you would have to reinitialize the initialValue to the new value - thus making sure that the next change is compared against this value. While this approach works overall, the view is now becoming a place to buffer values. Instead if the observer could provide the old and the new value, the code could be much simpler. – Naresh Feb 11 at 0:49
Corrected my answer. It looks like that beforeObserver, as @Luke says, can achieve the same result. – Zack Feb 11 at 5:36
I agree. Thanks. – Naresh Feb 11 at 6:18
View state is an internal property and shouldn't be referenced directly from any of your code. Also, instead of using Ember.$(this.get('element')).find('.quote-value), you can just do this.$('.quote-value'). – Peter Wagenet May 1 at 3:48
feedback

Your Answer

 
or
required, but never shown

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