I’m trying to set up a nested grid based on your example here: http://www.jqwidgets.com/jquery-widgets-demo/demos/jqxgrid/index.htm#demos/jqxgrid/nestedgrids.htm
I think I’ve got most of it, but all my nested grids are showing up empty. I’ve determined it’s because my filter is returning false, but I’ve checked the data and there’s at least one match. While checking the code I realized that I’m not sure where this ‘orders’ variable is coming from:
var ordersDataAdapter = new $.jqx.dataAdapter(ordersSource, { autoBind: true });orders = ordersDataAdapter.records;// create nested grid.
It doesnt seem to be declared anywhere above, so I’m wondering if it’s somehow related to the parent grid?
Also, percentage column widths aren’t playing well when having the rowdetails ‘column’ displayed. If my column widths add up to 100%, I get a horizontal scroll bar. If they add up to 96%, I still get a horizontal scrollbar, but it’s greyed out and unusable. If they add up to 95%, there’s a bit of whitespace between the last column and the edge of the grid.