You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Track by name wasn't allowing for swapping out column definitions. If you
re-used the same column names with different definitions this would cause
your columns to lose their width CSS rules.
Also re-enabled to unit test to check for this.
<divclass="ui-grid-header-cell ui-grid-clearfix" ng-repeat="col in colContainer.renderedColumns track by col.colDef.name" ui-grid-header-cellcol="col" render-index="$index"></div>
7
+
<divclass="ui-grid-header-cell ui-grid-clearfix" ng-repeat="col in colContainer.renderedColumns track by col.uid" ui-grid-header-cellcol="col" render-index="$index"></div>
0 commit comments