Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to implement this Knockout example using ASP MVC 3's "Razor" view engine.

The first topic covers simple data binding of a C# array using the standard ASP view engine. I am trying the sample example using "Razor", and this line:

<script type="text/javascript"> 
    var initialData = <%= new JavaScriptSerializer().Serialize(Model) %>; 
</script>

results in an empty variable for initialData.

I also tried this:

@{
    string data = new System.Web.Script.Serialization.JavaScriptSerializer().Serialize(Model);
}

And then specified the initialData like this:

var initialData = @Html.Raw(data);

This populates initialData with the dataset, but binding does not work.

I'm just trying to databind this set in order to display a count of the ideas, as in the example:

<p>You have asked for <span data-bind="text: gifts().length">&nbsp;</span> gift(s)</p>

Why isn't data binding working in this instance?

share|improve this question

2 Answers

up vote 20 down vote accepted

The easiest way in MVC3 is to do:

var initialData = @Html.Raw(Json.Encode(Model));
share|improve this answer
Thanks, @RP, but it doesn't work for me. I have this: <p>You have asked for <span data-bind="text: gifts().length">&nbsp;</span> gift(s).</p> <script type="text/javascript"> var initialData = @Html.Raw(Json.Encode(Model)); var viewModel = { gifts: ko.ObservableArray(initialData) }; ko.applyBindings(viewModel); </script> The bindings don't show up for me. – retrodrone May 3 '11 at 20:22
Can you do a "view source" in your browser and see how initialData looks in the markup? I have a copy of the gift editor sample that works with this code. Did you change anything else? Thanks. – RP Niemeyer May 3 '11 at 20:45
Nothing out of the ordinary. initialData is just a regular JSON array populated with the correct data. I can throw up an alert box with the correct count, but the ko databinding isn't working. It's super frustrating because the live examples are superb. – retrodrone May 3 '11 at 20:55
1  
You can take a look at this: db.tt/5VYfoWz and try to reconcile it with yours. – RP Niemeyer May 3 '11 at 21:40
2  
Just FYI, my sample was breaking because I used the latest jQuery (1.5.1), jQuery template, and Knockout libs. I replaced all of that with @RP's example libs and it worked. – retrodrone May 4 '11 at 15:35
show 4 more comments

I ran into this same problem, and discovered that it was my own stupidity that caused the issue (which it so often is). I forgot to wait until the DOM loaded to call ko.applyBindings(viewModel) - so simply using:

$(document).ready(function () { ko.applyBindings(viewModel); });

So the whole script as

<script type="text/javascript">
var initialData = @Html.Raw( new JavaScriptSerializer().Serialize(Model));
var viewModel = {
    gifts: ko.observableArray(initialData)
};

$(document).ready(function () { ko.applyBindings(viewModel); });
</script>

This worked with knockout-1.2.1.js and jquery-1.5.1.js

share|improve this answer
You just helped me solve a problem I was banging my head against for the last 2 days. Thank you. – dotnetN00b Jul 27 '12 at 20:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.