Asp.net-mvc – Knockoutjs Editable Grid

asp.net-mvcasp.net-mvc-4knockout.js

Are there any samples or examples of standard Grids/tables created by Knockoutjs that are sortable on their columns and editable on a row level.

That is the rows are a normal table until you click and then you can edit them and save them back to the server using Ajax? Is there any examples of integrating Knockout with for example a JQuery UI editable grid like Wijmo grid or any other. I guess any JS grid that takes JSON could work?

I have a requirement to implement an editable table and would rather use Knockoutjs. Especially with Upshot.js and MVC4 on the way.

Thanks

Best Answer

KoGrid is a pretty good option.

It allows you to define cell and row templates where you can do exactly what you're saying. There is some documentation on the wiki

Related Topic