Reputation: 4496
I'm making app which will provide possibility to input elements to database. Creating form for creating 1 element it easy but for putting to database many at once isn't.
I'm asking if there is some way to create something like winForms's datagridView in asp.mvc5
or it's need to be done using JS framework like knockout?
Upvotes: 0
Views: 67
Reputation: 891
ok then use ajax in jquery
send a json full with data
var mydatamap={"serial":"serial1", "name":,"Person1" ........... }
and populate your grid with that type of data
Upvotes: 1
Reputation: 891
If you are using MVC then why don't you use Grid using Jquery
try this http://trirand.com/blog/jqgrid/jqgrid.html
Upvotes: 1