Looking at the example on the demo page for Grid Row Details (demos/jqxgrid/rowdetails.htm) – is it possible to put a nested grid in the Notes tab? The url for the Nested source would be specific to the row expanded
// define source for CAPA Status Grid
gridNestedSource = {
datatype: "json",
datafields: [
{ name: 'CAStatusID', type: 'string' },
{ name: 'CAStatus', type: 'string' }
],
cache: false,
id: 'CAStatusID',
url: varNestedURL,
async: false
};
I envision setting varNestedURL in $(‘#jqxgrid’).on(‘rowexpand’, function (event) for the main grid.