I have a working jQuery DataTable that I render 1 query string for each link in a column. The edit, details and delete links of that column each receives the 1 parameter: the 'GbngUpdateId' value that is passed to the corresponding action method as a query string that it in turn uses as needed.
I now need to add 2 more parameters to the edit link of that column and pass them accordingly in the query string. They would be: 'PublishedSwitch' and 'AlertSentSwitch'.
The 2 extra parameters are in the list of this object that gets sent to the DataTable that it uses to build the grid.
I tried building it - the return string is syntactically correct.
For this column, 'data' refers to: gbngUpdateId.
I don't know how to access 'PublishedSwitch' and 'AlertSentSwitch' which are actually different columns on the same row. I want to use them too and send in the query string for this column.
I have ???? as placeholders for now.