I have some code like this:
@{
ViewBag.Title = "Home";
var grid = new JqGridHelper<Project>("projects",
dataType: JqGridDataTypes.Json,
methodType: JqGridMethodTypes.Post,
pager: true,
rowsNumber: 10,
sortingName: "Id",
sortingOrder: JqGridSortingOrders.Asc,
subgridEnabled: true,
url: Url.Action("ProjectsByUser"), <---- Here
etc...
By my understanding, url: URL.Action("FunctionName") will call a function that exists somewhere in my project with the name "FunctionName". All I want to do is look at the variables in the function while its running, but placing a breakpoint in VS doesn't work. So how would I go about doingnspect is executed, but the debugger only shows the code of scripts being executed, not the that? I've tried debugging with Chrome by setting up breakpoints before the code I want to in c# code.