Tag: v3.0.0-RC.18
-
-
Merge pull request #2169 from Envisage/calc-init-height
use horz scroll bar option to calculate initial grid height
-
Merge pull request #2237 from pedroclayman/master
added an 'aggregationLabel' attribute on colDef
-
-
refactor(AutoResize): Avoid excessive $digests
Using $timeout for the loop to check whether the grid dimensions have changed or not is causing a $digest() loop every 250ms. This can cause quite a lot of slow-down in a large grid. Changing to explicitly calling $apply() within a setTimeout() when the dimensions have changed should fix this. The tests have been updated to use Jasmine's async features to cover this alteration. Fixes #2284. Fixes #2247
-
fix(Aggregation): Refactor introduced bug
Tests were failing and I did not notice. The function stopped returning the actual values but was returning the aggregation text instead.
-
Merge pull request #2282 from mathiasdose/issue2281
Update pinning tutorial
-
-
added an 'aggregationLabel' attribute on colDef to be able to overrid…
…e the i18n translation fixed test fixed whitespaces added an 'aggregationLabel' attribute on colDef to be able to override the i18n translation fixed test fixed whitespaces
-
refactor(Aggregation): Use local function
The function was always iterating all rows and saving the results on a local variable to be used in only 4/6 of the time, causing a lot of overhead. Its now wrapped in a local function and is called only when needed.
-
Merge pull request #2262 from jpuri/master
partial fix for issue #2261
-
-
fix(Pinning): Add left border for right container
There was a border on the left container but not on the right container; no visual separation.
-
fix(Header): Hidden header height misplacement
c0bra committedDec 2, 2014 A hidden header caused the scrollbar and viewport to be drawn lower and smaller than they should have been. Fixes #1995 BREAKING CHANGE: The `hideHeader` option has been changed to `showHeader` To migrate, change your code from the following: `hideHeader: true` To: `showHeader: false`
-
Merge branch 'hideHeaderBug' of https://github.com/mathiasdose/ng-grid …
…into mathiasdose-hideHeaderBug Conflicts: src/js/core/factories/GridOptions.js
-
fix(cellNav): Don't setup when directive not there
The cellNav feature was attaching logic to render containers and grid cells despite the uiGridCellnav directive not being on the parent grid component. This was causing exception to be thrown during scroll events. This change looks for the cellNav controller (which is simply empty) and bails before attaching logic if the controller is not present. Also added tests to cover the exceptions that were occuring. Fixes #2128
-
Merge pull request #2258 from jpuri/master
fix for move column issue
-
-
Jyoti Puri authored and Jyoti Puri committed
Nov 25, 2014 Loading status checks…
-
Jyoti Puri authored and Jyoti Puri committed
Nov 24, 2014 Loading status checks…
-
Merge pull request #2209 from PaulL1/2141_suppress_column_menu_click
Fix #2141(header): no click handler if no sort or column menu
-
Merge pull request #2208 from PaulL1/2190_further
Fix #2190(filtering): further adjustment to noTerm logic
-
-
Merge pull request #2207 from PaulL1/1827_menu_tooltip
Fix #1827(menu): change attribute to name from title, suppresses tooltip
-
-
Merge pull request #2206 from PaulL1/2190_filter_no_input
Fix #2190(doco): provide tutorial example of filter with no input