-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Closed
Labels
Description
showTreeExpandNoChildren: defaults to true. Shows the + even if there are no children, allows you to dynamically load children. If set to false there'll be no + if there are no children
I changed the value of showTreeExpandNoChildren to false in my grid options, still the + symbol is coming if there is no children also.
$scope.gridOptions = {
enableSorting: true,
enableFiltering: true,
showTreeExpandNoChildren: true,
columnDefs: [{
name: 'name',
width: '30%'
}],
onRegisterApi: function(gridApi) {
$scope.gridApi = gridApi;
}
};
Using 3.0.0-rc.21 build which didn't contain code for showTreeExpandNoChildren.
Tried with also http://ui-grid.info/release/ui-grid-unstable.js which contains showTreeExpandNoChildren changes.
Can you please look into it?