.NET + KnockoutJS, demo here, use knockout-mapping.js for mapping
As in pure .NET application@Html.TextBoxFor(model=>model.questionarie.Sheets.ToList()[0].Timestamp) shows the timestamp. Using knockout shows nothing.
As I view the source, the seriazlied object data looks like this
var data={"questionarie":{"Sheets":[{"Groups":[{"GroupsOfQuestions":[{"Groups":null,"Questions":[{"Answers":[{"Questions":null,"answersid":1,"questionid":1,"userid":1,"value":1,"User":null,"Timestamp":[0,0,0,0,0,0,7,221].....
also log the viewmodel, timestamp is also turned into observable, but the submmited value is null, please help! The only walk around that I can come up with is to add one more property to model class as string represatation of the byte array, let knockout submit that string value instead of the bytearray, but don't think it's good idea.