my backbone model is :
var SampleModel = Backbone.Model.extend({
url : "/trade/investadjustupdate")
});
and i make server call as follows :
var investAdjustModel= new SampleModel();
investAdjustModel.fetch();
when i printed the model like the following : console.log(investAdjustModel);
and this is the screen shot of console.log(investAdjustModel);
i get all the value returned from th server but when i try to get a property like investAdjustModel.get("investAdjustRow"))
it says undefined
so how to get the property which is returned from the server?
Thanks