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
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,8 +18,13 @@ All notable changes for each version of this project will be documented in this
18
18
- Added `onScroll` event, which is emitted when the grid is scrolled vertically or horizontally.
19
19
-`igxTreeGrid`
20
20
- Removed `onDataPreLoad` event as it is specific for remote virtualization implementation, which is not supported for the `igxTreeGrid`. A more generic `onScroll` event is exposed and can be used instead.
21
+
-`IgxTimePicker`
22
+
- Added a disabled style for time parts outside of the minimum and maximum range.
21
23
22
24
### New Features
25
+
-`IgxGrid`, `IgxTreeGrid`, `IgxHierarchicalGrid`
26
+
- Introduced `showSummaryOnCollapse` grid property which allows you to control whether the summary row stays visible when the groupBy / parent row is collapsed.
27
+
- Added support for tooltips on data cells default template and summary cells.
23
28
-`IgxGridState` directive
24
29
- Added support for expansion states, column selection and row pinning.
25
30
- Added support for `IgxTreeGrid` and `IgxHierarchicalGrid` (including child grids)
@@ -33,6 +38,11 @@ All notable changes for each version of this project will be documented in this
33
38
- An optional string parameter `message` has been added to `show()` method.
34
39
-`IgxNavbar`
35
40
- Added new `igx-navbar-title, igxNavbarTitle` directive that can be used to provide custom content for navbar title. It would override the value of `title` input property.
41
+
-`IgxCalendar` and `IgxMonthPicker`
42
+
-`onViewDateChanged` emitted after the month/year presented in the view is changed after user interaction.
43
+
-`onActiveViewChanged` event emitted after the active view (DEFAULT, YEAR, DECADE) is changed after user interaction.
44
+
-`viewDate` day value is always 1.
45
+
-`activeView` setter is now available as an input property.
4. igxSelect Add igxHint support [#5584](https://github.com/IgniteUI/igniteui-angular/issues/5584)
11
+
5. igxGrid Hide the group area row [#5561](https://github.com/IgniteUI/igniteui-angular/issues/5561)
12
+
6. igxDateRangePickerComponent calendar should display selected range if both start and end are filled and valid [#7593](https://github.com/IgniteUI/igniteui-angular/issues/7593)
13
+
7. Add support for mixing px and % column widths [#5486](https://github.com/IgniteUI/igniteui-angular/issues/5486)
14
+
8. Do not close modal overlay on ESC key press [#7697](https://github.com/IgniteUI/igniteui-angular/issues/7697)
15
+
9. Themes: Add Dock Manager Support [#7541](https://github.com/IgniteUI/igniteui-angular/issues/7541)
16. Provide "Unfreeze All" option under Freeze button on Data Grid & Tree Grid
23
+
To Be Updated [#6549](https://github.com/IgniteUI/igniteui-angular/issues/6549)
24
+
17. Exposing onActiveNodeChange output in the Grid [#7601](https://github.com/IgniteUI/igniteui-angular/issues/7601)
25
+
18. Refactor commit method of IgxHierarchicalTransactionService to accept same parameters as base type [#5205](https://github.com/IgniteUI/igniteui-angular/issues/5205)
26
+
19. Tooltip for grid cell text content [#6215](https://github.com/IgniteUI/igniteui-angular/issues/6215)
27
+
20. Add tooltip to column summary [#6505](https://github.com/IgniteUI/igniteui-angular/issues/6505)
Copy file name to clipboardExpand all lines: projects/igniteui-angular/src/lib/calendar/README.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -133,7 +133,7 @@ The calendar header will not be rendered when the selection is either `multi` or
133
133
134
134
-`viewDate: Date`
135
135
136
-
Controls the year/month that will be presented in the default view when the calendar renders. By default it is the current year/month.
136
+
Controls the year/month that will be presented in the default view when the calendar renders. By default it is the first day of the current year/month.
137
137
138
138
-`value: Date | Date[]`
139
139
@@ -173,7 +173,17 @@ Controls the visibility of the dates that do not belong to the current month.
173
173
-`onSelection(): Date | Date[]`
174
174
175
175
Event fired when a value is selected through UI interaction.
176
-
Returns the selected value (depending on the type of selection).
176
+
Emits the selected value (depending on the type of selection).
177
+
178
+
-`onViewDateChanged(): IViewDateChangeEventArgs`
179
+
180
+
Event fired after the the month/year presented in the view is changed.
181
+
Emits an object containing the previous and current value of the `viewDate` property.
182
+
183
+
-`onActiveViewChanged(): CalendarView`
184
+
185
+
Event fired after the active view is changed.
186
+
Emits an CalendarView enum, indicating the `activeView` property value.
0 commit comments