|
2 | 2 |
|
3 | 3 | # CURRENT
|
4 | 4 |
|
| 5 | +1. [BUG] - Do we need to validate passed in grid 'id' property to make sure it can be in a CSS rule? |
| 6 | +1. [IDEA] - Hook the column menu button into the menu it activates so it can show/hide depending on the number of items it will show. Can we do that? |
| 7 | + 1. If sorting is enabled or the user / extension has supplied extra menu items, show the menu button. Otherwise don't show it. |
| 8 | + 1. We'll need a way to separate extension menu items from user menu items so the user doesn't override them. |
| 9 | +1. [IDEA] - Add an showColumnMenu option? Maybe you don't want it on mobile? |
| 10 | +1. [TODO] - Make HOME and END keys scroll to top/bottom if grid has focus... |
| 11 | +1. [IDEA] - Can we deselect any selected text when the grid is scrolled? |
| 12 | +1. [TODO] - Make row builders async with $q |
| 13 | +1. [TODO] - Make plnkr/jsfiddle ngdocs buttons work |
| 14 | +1. [TODO] - Remove IE11 cell selected weird green color... |
| 15 | +1. [IDEA] - Add gridOptions.options for all opts, and deep watch it then rebuild |
| 16 | +1. [IDEA] - Add version number to uiGrid module. |
| 17 | + |
| 18 | +1. [IDEA] - Might need to make dragging and reordering columns watch for a minimum pixel delta before starting drag, so it doesn't always cancel long-clicks |
| 19 | +1. [BUG] - Grid not redrawing properly when switching between tutorials. It still has the grid body height from the previous tutorial. |
| 20 | + 1. This is due to a combination of grunt-ngdocs and ngAnimate. ngAnimate is leaving two "page" (or whatever) elements on the page at the |
| 21 | + same time. Both have a main.css which include styles for the grid. Having the old one on there at the same time as the new one makes |
| 22 | + it use the height from the old one when calculating the grid height... *** Can we switch to Dgeni? *** |
| 23 | +1. [BUG] - Menu icon overlays menu text when column name is too long... |
| 24 | + 1. [IDEA] - Can we shrink the size of the header-cell-contents div and make it text-overflow: ellipsis? |
| 25 | +1. [TOFIX] - Menu icon vertical alignment off in IE11 (how does it look in FF?) |
| 26 | +1. [NOTE] - Use "-webkit-text-stroke: 0.3px" on icon font to fix jaggies in Chrome on Windows |
| 27 | +1. [TODO] - Add a failing test for the IE9-11 column sorting hack (columnSorter.js, line 229) |
| 28 | +1. [TODO] - Kendo Grid shows the column menu positioned OUTSIDE the grid for the final column, but it doesn't flow outside the window. |
| 29 | + <!-- 1. It is positioned by specific pixel amount. We will need to measure the menu size in order to get it right under any menu button we use. --> |
| 30 | + |
5 | 31 | 1. [TODO] - Add row filtering
|
6 | 32 | 1. [TODO] - Add notes about browser version support and Angular version support to README.md
|
| 33 | +1. [TODO] - Add handling for sorting null values with columnDef sortingAlgorithm (PR #940) |
| 34 | + |
| 35 | +# Cleanup |
| 36 | + |
| 37 | +1. [TODO] - Rename gridUtil to uiGridUtil |
| 38 | +1. [TODO] - Rename GridUtil in uiGridBody to gridUtil or the above |
| 39 | +1. [TODO] - Move uiGridCell to its own file |
| 40 | + |
| 41 | +# Extras |
| 42 | + |
| 43 | +1. Add iit and ddescribe checks as commit hooks |
7 | 44 |
|
8 | 45 | # Native scrolling
|
9 | 46 |
|
10 |
| -1. [BUG] - Touch event deceleration goes backwards when scrolling up, but only with small amounts |
| 47 | +1. [BUG] - Touch event deceleration goes backwards when scrolling up, but only with small amounts. |
| 48 | + 1. [BUG] - Horizontal scrolling when emulating a touch device is weird too, scroll between grid canvas and header canvas is offset. |
11 | 49 | 1. [TODO] - Take a look at Hamster.js for normalizing mouse wheel events, test on MacAir.
|
12 | 50 |
|
| 51 | +# Memory Issues |
| 52 | +1. [LEAKS] - Make sure stylesheets are being removed on $destroy, and anywhere that we might be doing manual appendChild, or other appending. |
| 53 | +1. [LEAKS] - Null out all references to DOM elements in $destroy handler |
13 | 54 |
|
14 | 55 | # MORE
|
15 | 56 |
|
|
50 | 91 |
|
51 | 92 | # Done!
|
52 | 93 |
|
53 |
| -1. [DONE] - [BUG] - When column resizing and you've scrolled to the end of the grid, the scrollbar extends beyond the viewport... |
54 |
| -1. [DONE] Figure out how to run e2e tests on docs (look at angularjs source / protractor?) |
55 |
| -1. [DONE] Add --browsers option for testing on saucelabs with specific browser(s) |
56 |
| -1. [DONE] Make karmangular run in `watch` mode and in singlerun too. |
57 |
| -1. [DONE] Make sure failing saucelabs tests don't cause the build to fail. Only if the normal test run fails |
58 |
| -1. [DONE] Add grunt task that will use ngdoc to build test specs from docs into .tmp/e2e/doc.spec.js |
59 |
| - - It will need to run after ngdocs does. Maybe make a `gendocs` task that runs both serially. |
60 |
| -1. [DONE] Docs ref for ui-grid.js is pointing to localhost:9999 on travis. |
61 |
| -1. [DONE] Sometimes scrollbar snaps back to the top??? |
62 |
| - 1. I think it's getting mousewheel events when the element doesn't have focus. |
63 |
| - 1. To reproduce, use mousewheel to scroll to bottom of grid, then move outside grid and scroll page to top. Use window scrollbar to move back down to show grid, then click on scrollbar. It will snap to the top. |
64 |
| -1. [DONE] elementHeight() (AND jQuery.height()) isn't working on the .ui-grid element. It's not accounting for the border when figuring out the canvas drawing space. |
65 |
| - 1. [NOTE] - I just had to subtract "1" from the canvas height. Not sure why. After that, any borders of any size on the grid element are accounted for correctly. |
66 |
| - 1 [NOTE] - It was because of the top-panel bottom border, which is 1px by default |
67 |
| -1. [DONE] Looks like the canvas needs to be the height of all the elements (rowheight * data length) in order for the scroll to work right |
68 |
| -1. [DONE] Add 'track by $index' to ng-repeats? |
69 |
| -1. [DONE] Add virtual repeat functionality |
70 |
| -1. [DONE] Scrollbar should only show up when there's elements to scroll. |
71 |
| - 1. i.e. add ng-show based on canvasHeight > gridbody height |
72 |
| -1. [DONE] Copy angular-animate, prettify.js and marked.js into the docs/js dir separately from grunt-ngdocs. It's causing them to show up in `<script>` tags in the Examples which isn't what we want |
73 |
| -1. [DONE] Mouse wheel should work in viewport (almost done) |
74 |
| -1. [DONE] - [BUG] - Hidden grid doesn't calculate height of header correctly |
75 |
| -1. [DONE] - [BUG] - Viewport is calcuating too small on customizer page on ui-grid.info ONLY. |
76 |
| - - Was including wrong ui-grid.css file |
77 |
| -1. [DONE] - Make scrollbar look like chrome's? |
78 |
| -1. [DONE] - Horizontal scrolling |
79 |
| - - [DONE] - [NOTE] - The header will need to be able to scroll as well. It will need to be able to overflow |
80 |
| - - [IDEA] - We'll need to iterate through the columnDefs in the style computation, and calculate the minimum number of rows to render. |
81 |
| - - Basically find the set of smallest columns, according to their width, that still cover the viewport, and figure out how many are in the set, then set minCols to that |
82 |
| - - Starting with the first column, add up the column widths until they are greater than the viewport width, then save that number of columns as the minimum. Continue going through the |
83 |
| - column widths, subtracting the previous column's width and adding the next column's width. If at any point the total width is less than the viewport, increment the minimum number of columns. |
84 |
| - - [IDEA] - Might need to dynamically set 'excessColumns'. With a 'scrollThreshold' of 4 and 'excessColumns' of 4, it was not rendering enough columns to the left of the viewport |
85 |
| - - [TODO] - Figure out how to calculate the margin-left property on the columns when the columns have variable sizes. Might need to calc the widths of the rendered columns in order to get the offset adjustments |
86 |
| - 1. [DONE] - [IDEA] - Break out GridColumn into its own factory |
87 |
| - 1. [DONE] - [TODO] - Obey minWidth and maxWidth in colDef, in resizer [TODO] AND in the header width builder |
|
0 commit comments