Hi David,
As far as I understand the requirements, you need to redirect to another page when the 'Edit' button is clicked, instead of displaying the Grid in one of the built-in edit modes.
If this is the scenario, I would suggest you subscribe to the dataBound event. In the event handler, you could prevent the default behavior and redirect to another view. Below you will find such example:
function onDataBound(e) {
overrideEditCommand(this);
}
function overrideEditCommand(grid) {
$('.k-grid-edit').on('click', function (e) {
e.preventDefault();
e.stopPropagation();
var dataItem = grid.dataItem($(e.target).closest('tr'));
window.location.href = "/Home/Edit?id=" + dataItem.OrderID;
})
}
I hope you will find the provided suggestion helpful. Let us know in case you have additional questions.
Regards,
Neli
Progress Telerik