I am trying my hand with knockout.js for a single page CRUD application, on almost everything it seems better than loading partial pages in to the view with ajax, one thing I'm having trouble with though, is rendering a textarea in parsed html, instead I get all the tags <p> etc.
When I was using Razor/C# I would just use @Html.Raw(Model.Details) however now I'm using <td data-bind="text: Details"></td>.
I have tried <td>@Html.Raw(new { @data_bind="text: Details" })</td> but no luck.
What would be the best way around this?