szpic
szpic

Reputation: 4496

Creating grid editor in asp.net mvc

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

Answers (2)

Dibu
Dibu

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

Dibu
Dibu

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

Related Questions