Kindly let me know if there is any way to achieve the below using mvc razor
I have a grid say with a list of users (user id, first name, last name, comments)
On row double click i need to open a pop-up window to modify the user information. This pop up window is a new view page where i will be loading the contents based on the user id which will be passed as query string. The user is allowed to modify the details on the page and on click of save the details needs to be saved to the DB and the popup window has to be closed so that the user page will be active and the grid has to refreshed to show the modified information.
Regards,
Suresh A
Hello Suresh,
Thank you for the clarification. I got your question.
In this scenatio you should update manually the grid using update row method
https://www.igniteui.com/help/iggrid-updating-landingpage
$(
"#grid"
).igGridUpdating(
"updateRow"
, 5, {ProductName:
"THE_NEW_VALUE"
});
Hope this helps
Nope. In the new popup i will be displaying some additional information from the grid where the user is allowed to update the same. Hope you got my question.
Thank you for posting in our forums.
Using a pop-up window you won't be able to take advantage of the build-in Editing ,
so you should update the rows manually using the updating API
https://www.igniteui.com/help/iggrid-updating
Let us know if you need further assistance.
Any updates on this?