I'm writing a MVC website and using jqGrid. I have managed to get it working, loading data, editing via a different web page and deleting data.
However, I'm trying to figure out how to make it go to a different page when you click view. Currently it will display the row data in a model form. What I need to happen is for it to go to a different page e.g. /CLients/ViewClient/1
The reason for this is that the client model has more information than I'm displaying on the grid. Hence, I need to go to a separate page to display all the information in the correct manor.
Anyone got any idea on how I can do this?