The goal is to get the data from the ViewBag.Array to a Javascript array. The data is calculated in the controller so I cannot fetch it straight from the database. I need the data to draw a chart with jqplot. Code:

for(i = 0; i < @ViewBag.Array.Length; i++)
{
    jScriptArray[i] = @ViewBag.Array[i];
}

The problem is "'i' does not exist in the current context" in the @ViewBag.Array[i] but has no problems in the jScriptArray[i]. Any help is appreciated.

link|improve this question

67% accept rate
feedback

3 Answers

up vote 9 down vote accepted

You may try the following:

var array = @Html.Raw(Json.Encode(@ViewBag.Array));
for(var i = 0; i < array.length; i++) {
    jScriptArray[i] = array[i];
}
link|improve this answer
1  
This one did it. Thank you, saved my day. – Esa Apr 29 '11 at 10:28
feedback

@Html.Raw(Json.Encode(@ViewBag.Array)) is razor syntax, but what about accessing the viewbag array from an external javascript file ? I try not to include any js if I can in my view directly.

link|improve this answer
feedback

The best way to achieve your goal is to create a JSON controller that returns the data into a JSON array.

From your javascript you can request the data and then process it.

Hope this helps

link|improve this answer
No, this can be done. No need to create a controller returning JSON for this. – Darin Dimitrov Apr 29 '11 at 9:58
Sorry for the can't be done, but it s better to use a JSON controller than using Viewbag for javascript server-side communication. – alexl Apr 29 '11 at 10:00
1  
for javascript -> server communication yes, it's better, I agree. But here we are talking about server -> javascript communication. The server already sent a view model to the view, it would be bad to perform an additional AJAX request just to JSON serialize this model when this can be done directly. – Darin Dimitrov Apr 29 '11 at 10:05
feedback

Your Answer

 
or
required, but never shown

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