angular-ui/ui-grid

Grouping breaks Column Header Height for deferred columnDefs generation

Open

#3.609 geöffnet am 27. Mai 2015

Auf GitHub ansehen
 (4 Kommentare) (1 Reaktion) (1 zugewiesene Person)JavaScript (2.496 Forks)batch import
help wanted

Repository-Metriken

Stars
 (5.395 Stars)
PR-Merge-Metriken
 (Keine gemergten PRs in 30 T)

Beschreibung

http://plnkr.co/edit/u6LBOx?p=preview As you can see in this demo if the column header height is wrong when the grouping directive is added to the grid. This is only a problem when the column defs aren't there when the grid options are loaded. Example:

$timeout(function(){
  var newColumnDefs = [
    { name:'firstName', field: 'first-name', displayName: 'First Name'},
    { name:'1stFriend', field: 'friends[0]', displayName: '1st Friend'},
    { name:'city', field: 'address.city', displayName: 'City'},
    { name:'getZip', field: 'getZip()'}
  ];
  $scope.gridOptions.columnDefs = newColumnDefs;
}, 500);

This problem is not there for the grid without the grouping directive.

When you perform the grouping action the headers appear correctly however when you ungroup they return to their broken state. OS: Mac OSX Browser: Chrome Build: v3.0.0-rc.21-d68dcc6 - 2015-05-27 screen shot 2015-05-27 at 2 19 41 pm

Contributor Guide