We have an ember object, which we want to populate with data coming from an AJAX call:
window.App = Ember.Application.create(
{ rootElement: '#container' }
);
App.WindowDetail = Ember.Object.create({
ID: "",
Title: "",
InteriorFinishesDescription: ""
});
Currently, we are getting JSON data via an AJAX call in this manner:
$(window).load(function () {
//Call the page method
$.ajax({
type: "POST",
url: "TestController.aspx",
//contentType: "application/json; charset=utf-8",
data: "asaw",
dataType: "json",
success: function (r) {
App.WindowDetail.InteriorFinishesDescription = r.InteriorFinishesDescription;
alert(App.WindowDetail.InteriorFinishesDescription);
}
});
});
In this sample, the JSON data comes back fine -- "App.WindowDetail.InteriorFinishesDescription" gets populated.
The problem is that the template doesn't get populated. And, I don't think this is exactly the correct way to get JSON data back when using Ember JS.
Here's a sample of what the handlebars template looks like:
<script type="text/x-handlebars">
<div class="two columns">
{{App.WindowDetail.InteriorFinishesDescription}}
</div>
</script>