Skip to content

Latest commit

 

History

History
247 lines (158 loc) · 11.8 KB

CHANGELOG.md

File metadata and controls

247 lines (158 loc) · 11.8 KB

2.0.7 (2013-07-01)

Features

This release is mainly focused on fixing the grid layout/column widths:

Columns

  • Removed border-left and border-right from columns. Now we are using vertical bars so if someone sets a width to be 400px for a column, the column will actually be 400px, not 401-402px due to the border. This caused the horizontal overflowing to happen producing a horizontal scrollbar. This also fixed issues like angular-ui#411 where you would see columns not extend all the way to the edge and you would get double borders
  • Percent calculation is handled before asterisks calculations because percent calculation should take higher priority, and the asterisks calculations will then be able to fill the remaining space instead of horizontally overflowing the viewport

A fix contributed by @swalters for #436:

Editing Cells

When editing a cell, the ng-cell-has-focus directive will broadcast a message named ngGridEventStartCellEdit to let all children know that you can now give yourself focus. When the editable cell template is done with editing (usually on a blur event) you need to emit ngGridEventEndCellEdit to let ng-cell-has-focus know that you are done editing and it will then show the non-editable cell template. The reasoning for this is (good quote): "Now I can wrap my input elements in divs/spans, whatever and control exactly what element's blur triggers the end edit" - @swalters. An example (used for ng-input directive):

scope.$on('ngGridEventStartCellEdit', function () { elm.focus(); });

angular.element(elm).bind('blur', function () { scope.$emit('ngGridEventEndCellEdit'); });

Also, there is another option now which is enableCellEditOnFocus (yes, it's coming back) so now you can choose between excel-like editing or enabling edit mode on focus.


Also some fixes contributed by @ebbe-brandstrup are:

configureColumnWidths

  • Columns sized with * or % now expand / shrink as other * or %-based columns are hidden / shown
    • Note: the changes auto-expand/shrink only take effect on-the-fly
    • Works with grouping and when enabling the selection checkbox row (showSelectionCheckbox)
  • Bugfixes in configureColumnWidths
    • Re-ordered columns now keep their width setup
    • Fixed "asteriskNum" so it no longer includes hidden columns (was checking .visible on a columnDefs column instead of the matching ngColumn)
    • Fixed "totalWidth" so it no longer includes hidden columns when using px values for width (was checking .visible on a columnDefs column instead of the matching ngColumn)
    • Fixed ngColumn width being initialized to undefined when using "auto" for width, regardless of "minWidth" settings (was checking .minWidth on a columnDefs column instead of the matching ngColumn)

Renamed "col" to "colDef" in configureColumnWidths() in the places where "col" was a column from "columnDefs". It made it clearer for me whether I was referring to a ngColumn or a column from columnDefs. There were a couple of bugs caused by that (col.visible incorrectly accessed on columnDefs objects instead of ngColumns, and the like).

ng-grid-flexible-height plugin

  • Bugfixes in ng-grid-flexible-height
    • The plugin couldn't shrink the grid, only grow it
    • Using domUtilityService.UpdateGridLayout instead of grid.refreshDomSizes which correctly grows the grid if it's been shrunk (e.g. when paging to the last page and it has few rows + the plugin has a smaller min. height than what's needed on the other pages)

Bug fixes

Too many to list. Here is the pull request angular-ui#511

2.0.6 (2013-06-?)

Features

  • Development

    • Continuous integration testing with Travis CI. A few tests that were looking for pixel perfection had to be relaxed due to rendering differences between browsers and OSes.
    • Moved this changelog to CHANGELOG.md!
    • Added tests for i18n languages. Any new language must cover all the properties that the default language (English) has.
    • CSS files compiling with less (24bb173)
    • Added optional --browsers flag for test tasks. grunt test --browsers=Chrome,Firefox,PhantomJS will test in all 3 browsers at once.
  • Sorting

    • Allow optional '+' prefix to trigger numerical sort (f3aff74, 8e5c0a1)
    • Standardizing sort arrow direction (thanks @dcolens) (9608488)
  • i18n

    • Added Brazilian Portugeuse (thanks @dipold) (ab0f207)

Bug fixes

2.0.5 (2013-04-23)

Features

  • Moving to $http for external template fetching. Should fix issues with grid rendering before templates are retrieved, as well as fetching the same template multiple times.

Bug fixes

  • Fixed bug that prevented the grid from maintaining row selections post-sort thanks to sum4me

2.0.4 (2013-04-08)

Bug fixes

  • Fixing some more minor bugs

2.0.3 (2013-03-29)

  • Changed default multiSelect behavior, updating some plugins and making some more minor bugfixes.

2.0.2 (2013-03-08)

  • minor bugfixes, updating some plugins.

2.0.1 (2013-03-05)

  • Moved to grunt build system. No more international version; all languages are included by default. Fixed minor grouping display issue. Using $templateCache for templates instead of global namespace.

2.0.0 (2013-03-05)

  • Breaking Changes: see documentation (showSelectionBox, enableRowSelection, showFooter). Column Virtualization added. Row virtualization performance improved. Excel-like editing instead of enableFocusedCellEdit.

1.9.0 (2013-02-18)

  • Aggregates now display correctly. Added more option methods to select and group data (see wiki), Added column pinning.

1.8.0 [Hotfix] (2013-02-11)

  • Fixes for multi-level grouping and adding the gridId to both the grid options and as argument to the "ngGridEventData" so you can identify what grid it came from.

1.8.0 (2013-02-07)

  • Major architectural changes which greatly improves performance. virtualizationThreshold now controlls when virtualization is force-enabled and is user-specified in options.

1.7.1 (2013-02-06)

  • Fixed bug with selections and multiple grids. New emit message for notifying when hitting bottom of viewport. Can disable virtualization. ng-grid virtualization is on by default, but can be disabled if there are less than 50 rows in the grid. Anything > 50 rows virtualization is forced on for performance considerations.

1.7.0 (2013-02-05)

  • BREAKING CHANGES: Will add examples. Adding cell selection, navigation, and edit on focus. Added programmatic selections. Improved scrolling. ngGridEvents changed/added: see wiki.

1.6.3 (2013-01-17)

  • Can now highlight/copy text in grid. Fixed multiple issues when using multiselect along with shift key. Refactored key events so now they are all in the same directive for viewport. Hovering over highlightable text will change cursors in viewport. Fixed #93.

1.6.2 (2013-01-09)

  • Merged changes to have two-way data-binding work in templates, so if you're using a celltemplate, you can now use COL_FIELD instead of row.getProperty(col.field). row.getProperty is still in the row class for accessing other row values.

1.6.1 (2013-01-08)

  • Adding ability to preselect rows. Can deselect when multiSelect:false. Bug fixes/merging pull requests. Bower now works. Can now sync external search with ng-grid internal search. Check out other examples on examples page.

1.6.0 (2012-12-27)

  • Adding i18n support and support for different angularjs interpolation symbols (requires building from source).

1.5.0 (2012-12-20)

  • Modifying the way we watch for array changes. Added groupable column definition option. Bugfixes for #58, #59.

1.4.1 (2012-12-18)

  • jslint reformat, minor bugfixes, performance improvements while keydown navigating, adding "use strict" to script.

1.4.0 (2012-12-12)

  • Massive improvements to search thanks to iNeedFat!

1.3.9 (2012-12-12)

  • Refactored and removed unneeded code. Added scope events.

1.3.7 (2012-12-12)

  • Improving template compilation and fixing jquery theme support. Improving comments on grid options.

1.3.6 (2012-12-06)

  • sortInfo can now be set to default sort the grid. Improvements to the beforeSelectionChange callback mechanism when multi-selecting.

1.3.5 (2012-12-06)

  • Improved template rendering when using external template files. columnDefs can now be a $scope object which can be push/pop/spliced. Fixed box model for cells and header cells.

1.3.4 (2012-12-04)

  • Improved aggregate grouping, minor bugfixes. Auto-width works!

1.3.2 (2012-11-27)

  • Changed default width behavior to use *s and added option to maintain column ratios while resizing

1.3.1 (2012-11-27)

  • Added layout plugin. Support for uri templates. Performance improvements.

1.3.0 (2012-11-23)

  • Major code refactoring, can now group-by using column menu, changes to build

1.2.2 (2012-11-21)

  • Built-in filtering support, numerous perfomance enhancements and minor code refactoring

1.2.1 (2012-11-20)

  • Added ability to specify property "paths" as fields and for grid options.

1.2.0 (2012-11-19)

  • Added Server-Side Paging support and minor bug fixes.

1.1.0 (2012-11-17)

  • Added ability to hide/show columns and various bug fixes/performance enhancements.

1.0.0 (2012-11-14)

  • Release