I am using the jquery-bootgrid to render a couple of grinds. It works brilliant. I want to send some additional parameters for the grid to my MVC controller. How can i pass those parameters ? I have tried :
$("#results-grid").bootgrid({
ajaxSettings: {
url: testResultsListUrl,
data: { testSubject: '2', another : '3' }
}
});
But it does not seem to work. If i put all the properties for the ajax object inside the ajaxSettings, the un set ulr error is thrown.
Can you please help ?