You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,26 @@
3
3
All notable changes for each version of this project will be documented in this file.
4
4
5
5
## 16.0.0
6
-
6
+
### Breaking Changes
7
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
8
+
The following grid properties, deprecated since version 12.1.0 are now removed:
9
+
- *evenRowCSS*;
10
+
- *oddRowCSS*;
11
+
- *page*;
12
+
- *paging*;
13
+
- *perPage*;
14
+
- *totalPages*;
15
+
- *isFirstPage*;
16
+
- *isLastPage*;
17
+
- *pageChange*;
18
+
Also the following deprecated grid events are removed.
19
+
- *perPageChange*;
20
+
- *pagingDone*;
21
+
Deprecated methods removed from the grid API are:
22
+
- *nextPage*;
23
+
- *previousPage*;
24
+
- *paginate*;
25
+
- *getCellByColumnVisibleIndex*;
7
26
### General
8
27
- All Ignite UI for Angular components are now exported as `standalone` components. The library still exports `NgModules`, which have been preserved for backward compatibility, but they no longer declare any of the Ignite UI for Angular components, instead they just import and export the `standalone` components. The `standalone` components are still in a preview stage. Some utility directive exports may change in the future and may be missing from the documentation in the initial release, hence the `preview` state of the feature.
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/grids/README.md
-9Lines changed: 0 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -169,9 +169,6 @@ Below is the list of all inputs that the developers may set to configure the gri
169
169
|`autoGenerateExclude`|Array|A list of property keys to be excluded from the generated column collection, default is _[]_|
170
170
|`batchEditing`|boolean|Toggles batch editing in the grid, default is _false_|
171
171
|`moving`|boolean|Enables the columns moving feature. Defaults to _false_|
172
-
|`paging`|boolean|Enables the paging feature. Defaults to _false_.|
173
-
|`page`| number | The current page index.|
174
-
|`perPage`|number|Visible items per page, default is 15|
175
172
|`allowFiltering`| boolean | Enables quick filtering functionality in the grid. |
176
173
|`allowAdvancedFiltering`| boolean | Enables advanced filtering functionality in the grid. |
177
174
|`filterMode`|`FilterMode`| Determines the filter mode, default value is `quickFilter`.|
@@ -184,8 +181,6 @@ Below is the list of all inputs that the developers may set to configure the gri
184
181
|`rowSelectable`|boolean|Enables multiple row selection, default is _false_.|
185
182
|`height`|string|The height of the grid element. You can pass values such as `1000px`, `75%`, etc.|
186
183
|`width`|string|The width of the grid element. You can pass values such as `1000px`, `75%`, etc.|
187
-
|`evenRowCSS`|string|Additional styling classes applied to all even rows in the grid.|
188
-
|`oddRowCSS`|string|Additional styling classes applied to all odd rows in the grid.|
189
184
|`paginationTemplate`|TemplateRef|You can provide a custom `ng-template` for the pagination part of the grid.|
190
185
|`groupStrategy`| IGridGroupingStrategy | Provides custom group strategy to be used when grouping |
191
186
|`groupingExpressions`| Array | The group by state of the grid.
@@ -237,7 +232,6 @@ A list of the events emitted by the **igx-grid**:
237
232
|`columnInit`|Emitted when the grid columns are initialized. Returns the column object.|
238
233
|`sortingDone`|Emitted when sorting is performed through the UI. Returns the sorting expression.|
239
234
|`filteringDone`|Emitted when filtering is performed through the UI. Returns the filtering expressions tree of the column for which the filtering was performed.|
240
-
|`pagingDone`|Emitted when paging is performed. Returns an object consisting of the previous and the new page.|
241
235
|`rowAdded`|Emitted when a row is being added to the grid through the API. Returns the data for the new row object.|
242
236
|`rowDeleted`|Emitted when a row is deleted through the grid API. Returns the row object being removed.|
243
237
|`dataPreLoad`| Emitted when a new chunk of data is loaded from virtualization. |
@@ -287,9 +281,6 @@ Here is a list of all public methods exposed by **igx-grid**:
287
281
|`enableSummaries(expressions: Array)`|Enable summaries for the columns and apply your `customSummary` if it is provided.|
288
282
|`disableSummaries(fieldName: string)`|Disable summaries for the specified column.|
289
283
|`disableSummaries(columns: string[])`|Disable summaries for the listed columns.|
290
-
|`previousPage()`|Goes to the previous page if paging is enabled and the current page is not the first.|
291
-
|`nextPage()`|Goes to the next page if paging is enabled and current page is not the last.|
292
-
|`paginate(page: number)`|Goes to the specified page if paging is enabled. Page indices are 0 based.|
293
284
|`markForCheck()`|Manually triggers a change detection cycle for the grid and its children.|
294
285
|`pinColumn(name: string): boolean`|Pins a column by field name. Returns whether the operation is successful.|
295
286
|`unpinColumn(name: string): boolean`|Unpins a column by field name. Returns whether the operation is successful.|
0 commit comments