Is there a way to edit grid rows in a separate view. I need to accomplish this because the modal has too much information so it needs to be displayed in a separate view.
The only problem is the modal shows up is there anyway to do this without the modal showing at all and it goes stratight to the seperate view?
grid.bind("edit", function (e) {
window.location = '@Url.Action("AddEditCoalition","Form",new{coalitionId=Model.CoalitionId})' + '&formId=' + e.model.Id;
});