Я получил ширину каждого столбца родительской сетки, так как она уже отображается на странице.Во время расширения строки я назначил ширину столбца дочерней сетки с шириной родительского столбца.Работает успешно.
row.grid.getColumn ('column1'). DrawnWidth: column1 - это атрибут имени столбца в родительской сетке.
$scope.gridApi.expandable.on.rowExpandedStateChanged($scope,function(row){
if(row.isExpanded){
row.expandedRowHeight = (row.entity.subGridOptions.data.length * 30);
row.entity.subGridOptions.columnDefs[0].width = row.grid.getColumn('column1').drawnWidth-1;
row.entity.subGridOptions.columnDefs[1].width = row.grid.getColumn('column2').drawnWidth;
row.entity.subGridOptions.columnDefs[2].width = row.grid.getColumn('column3').drawnWidth;
row.entity.subGridOptions.columnDefs[3].width = row.grid.getColumn('column4').drawnWidth;
row.entity.subGridOptions.columnDefs[4].width = row.grid.getColumn('column5').drawnWidth;
row.entity.subGridOptions.columnDefs[5].width = row.grid.getColumn('column6').drawnWidth;
row.entity.subGridOptions.columnDefs[6].width = row.grid.getColumn('column7').drawnWidth;
row.entity.subGridOptions.columnDefs[7].width = row.grid.getColumn('column8').drawnWidth;
row.entity.subGridOptions.columnDefs[8].width = row.grid.getColumn('column9').drawnWidth;
row.entity.subGridOptions.columnDefs[9].width = row.grid.getColumn('column9').drawnWidth;
row.entity.subGridOptions.columnDefs[10].width = row.grid.getColumn('column10').drawnWidth;
row.entity.subGridOptions.columnDefs[11].width = row.grid.getColumn('column11').drawnWidth;
}