Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 1.19 KB

CHANGELOG.md

File metadata and controls

39 lines (25 loc) · 1.19 KB

IgniteUI Components Changelog

Features

  • Allow calling component methods via the Angular wrappers (#126)
  • Accessing grid features via the Angular wrappers (#98)
  • Binding to grid feature events. (#126)

BREAKING CHANGES

  • Each igGrid feature now has a separate Directive definition that needs to be imported and added to the module definition if the related feature is to be used in the grid. In previous versions all fetaures were imported as a single Directive definition. Example:

     import { Feature } from "../../src/main";
    

    Now each feature has its own specific directive. For example for Paging feature:

     import { Features, IgGridPagingFeature } from "../../src/main";
    

    Also the syntax for specifying the features has been changed.

    OLD:

     <ig-grid ... >
     	<feature [name]="'Paging'" ></feature>
     	<feature [name]="'Sorting'" ></feature>
     	...
     </ig-grid>
    

    NEW:

     <ig-grid ... >
     	<features>
     		<paging></paging>
     		<sorting></sorting>
     	</features>
     </ig-grid>