Hi MatthewV,
First, you have to set the width of the nested grid to 100%.
In our nested grid example you have to change this part of code :
...
if (grid != null) {
grid.jqxGrid({
source: nestedGridAdapter, width: '100%', height: 200,
columns: [
{ text: 'Ship Name', datafield: 'ShipName', width: 200 },
{ text: 'Ship Address', datafield: 'ShipAddress', width: 200 },
{ text: 'Ship City', datafield: 'ShipCity', width: 150 },
{ text: 'Ship Country', datafield: 'ShipCountry', width: 150 },
{ text: 'Shipped Date', datafield: 'ShippedDate', width: 200 }
]
});
...
Then remove margin-left :
rowdetailstemplate: { rowdetails: "<div id='grid' style='margin-left: 0px;'></div>", rowdetailsheight: 220, rowdetailshidden: true },
Unfortunately, the space under the column with arrows will remain.
Best Regards,
Ivailo Ivanov
jQWidgets Team
http://www.jqwidgets.com