This puzzles me. It must be something small I\'m not seeing. I\'m trying to load a very simple observableArray in knockout with an ajax call.
observableArray
javasc
We can use a simple JavaScript util function as a work-around.
Instead of viewModel.vendors(data);, wrapping with eval (research the dangers of eval first) will work.
viewModel.vendors(data);
eval("viewModel.vendors("+JSON.stringify(data)+");");