I'm trying to do the edit for a grid in separate view. The reason I need to accomplish this is because the information is too large for a modal. Right now this is how I'm moving to the new view.
Is there a cleaner way to do this becuase I little bit of the modal does popup intialy before changin to a new view.
grid.bind("edit", function (e) {
grid.cancelChanges();
window.location = '@Url.Action("AddEditCoalition","InputData",new{coalitionId=Model.CoalitionId})' + '&formId=' + e.model.Id;
}