ember.js - Manual Ember computed property not working while helper properties do -


I have the following controllers with many mathematical properties, most of whom use auxiliary functions all referred to in the template Work flawlessly However, the two values ​​computed manually fail, if I add them to my template because those properties which are undefined when the reference is first run. I get the Unkot Type error: property 'length' can not be read from numeral.js 'undefined' because if this is the wrong way with the way I created it? Are the calculations properties built with helpers working properly while referencing the exact same model data?

  AdvisorAdvanced Controller = Ember.ArrayController.extend Open: Ember.computed.filterBy "Model", "Status", "Open" Pending: Ember.computed.filterBy "Model", "Status" , "Pending" OpenWells: Amber computed.mapbay "Open", "value" pending value: amber dot coop.map "pending", "value" opencount: ember.computed.alias "open.length" pending question: Ember.computed .alias "pending.length" openTotal: Ember.computed.sum "openValues" Pending: Ember.computed.sum "pendingValues" showPending: Ember.computed.gt format "$ 0,0.00"). Property "OpenTotal" pending totals: (- (& gt; Number (@ "pending pending"). Format "$ 0", "Pending Coat", 0 OpenLySD: (-> Number, "0.00"). Property " Pending "  

I guess this model still removes when it is removed. This property is not a problem for properties because the resulting value is another Things are not being trusted, and they can solve at their own time.

  opencount: function () {open back and open.length;}. Property ('open.length')  < / Pre> 

In this way you will try to reach length to open , only when open is defined and "true" ".

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -