I return this json from the server:
{"Id":0,"Name":ko.observable('New Product'),"PurchasePrice":0.0,"DownPayment":0.0,"TotalPayment":0.0,"MortgageInsurance":0.0,"PurchaseOrRefinance":null,"Client":null,"MonthlyCosts":null,"ClosingCosts":null,"FirstLien":null,"SecondLien":null}
and I retrieve it using Jquery.getJson like this:
function addProduct(){
$.getJSON('@Url.Action("GetNewProduct","Product")',function(data){
viewModel.products.push(data);
});
viewModel.productSaved(false);
viewModel.product(products[products.length - 1]);
}
however it seem as if the code never runs, this only happends when I return the function in the json, if i remove the function everything runs fine, is there a way to work this out?
ko.observableis in your javascript? – andres descalzo Mar 10 '11 at 3:11