Skip to content

Instantly share code, notes, and snippets.

@jonrimmer
Created February 26, 2015 17:31
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jonrimmer/d9c9091a9c300286a8ef to your computer and use it in GitHub Desktop.
Save jonrimmer/d9c9091a9c300286a8ef to your computer and use it in GitHub Desktop.
Auto-Resize Directive for Angular UI-Grid
(function() {
angular
.module('myApp')
.directive('myUiGridResize', myUiGridResizeDirective);
/* @ngInject */
function myUiGridResizeDirective(gridUtil, uiGridConstants) {
return {
restrict: 'A',
require: 'uiGrid',
link: function($scope, $elm, $attrs, uiGridCtrl) {
$scope.$watch($attrs.uiGrid + '.minRowsToShow', val => {
var grid = uiGridCtrl.grid;
// Initialize scrollbars (TODO: move to controller??)
uiGridCtrl.scrollbars = [];
// Figure out the new height
var contentHeight = grid.options.minRowsToShow * grid.options.rowHeight;
var headerHeight = grid.options.hideHeader ? 0 : grid.options.headerRowHeight;
var footerHeight = grid.options.showFooter ? grid.options.footerRowHeight : 0;
var scrollbarHeight = grid.options.enableScrollbars ? gridUtil.getScrollbarWidth() : 0;
var maxNumberOfFilters = 0;
// Calculates the maximum number of filters in the columns
angular.forEach(grid.options.columnDefs, function(col) {
if (col.hasOwnProperty('filter')) {
if (maxNumberOfFilters < 1) {
maxNumberOfFilters = 1;
}
}
else if (col.hasOwnProperty('filters')) {
if (maxNumberOfFilters < col.filters.length) {
maxNumberOfFilters = col.filters.length;
}
}
});
var filterHeight = maxNumberOfFilters * headerHeight;
var newHeight = headerHeight + contentHeight + footerHeight + scrollbarHeight + filterHeight;
$elm.css('height', newHeight + 'px');
grid.gridHeight = $scope.gridHeight = gridUtil.elementHeight($elm);
// Run initial canvas refresh
grid.refreshCanvas();
});
}
};
}
})();
@JorgeNoderoJS
Copy link

Can you give me a example with view, controller and directive all working together. Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment