With telerik MVVM is this possible? I have a one field that is calculated fine :
I then want another attribute that is computed dependent upon this:
I don't get anything in the textbox for Total Amount. Is this possible?
                                BondProceeds: function(){                                                                                return this.get("UnderlyingPar") * (this.get("UnderlyingPrice")/100);                                       },I then want another attribute that is computed dependent upon this:
TotalAmount: function(){                                       return this.get("BondProceeds") - this.get("FloaterAmount");                                        }I don't get anything in the textbox for Total Amount. Is this possible?