This question is locked. New answers and comments are not allowed.
Hi,
Can some one tell me how to achieve the below mentioned functionalities:
1. Add and remove rows to Grid through client side javascript. It should not call to a controller method, for every insert/delete operation. Addition/Deletion should happen at the client side.
2. On click of submit button in the form, all the rows that are present in all the Grids (i have 3 grids on the page), should get posted to some controller's Action method., something like :
Is it possible ?
Regards,
Balakrishna.
Can some one tell me how to achieve the below mentioned functionalities:
1. Add and remove rows to Grid through client side javascript. It should not call to a controller method, for every insert/delete operation. Addition/Deletion should happen at the client side.
2. On click of submit button in the form, all the rows that are present in all the Grids (i have 3 grids on the page), should get posted to some controller's Action method., something like :
public ActionResult Persist(IList<Customer> businessOwners,IList<customer> FAAs,IList<Customer> users) { _repository.Save(businessOwners,FAAs,users); }Is it possible ?
Regards,
Balakrishna.