8.2.3
-
IgxTextHighlightDirective - The default highlight directive styles have been moved to a Sass theme - igx-highlight-theme; You can modify the resting and active background and text color styles of the directive by passing the respective properties to the Sass theme. You can still pass your own CSS classes to the highlight directive via the cssClass and activeCssClass inputs.
-
IgxChip
- Breaking Change The
originalEvent property for the events onMoveStart, onMoveEnd, onClick and onSelection now provides the events, passed from the igxDrag directive. The passed original events are in other words the previous events that triggered the igxChip ones. They also have original events until a browser event is reached.
-
IgxGrid - Now you can access all grid data inside the custom column summary. Two additional optional parameters are introduced in the IgxSummaryOperand operate method.
class MySummary extends IgxNumberSummaryOperand {
constructor() {
super();
}
operate(columnData: any[], allGridData = [], fieldName?): IgxSummaryResult[] {
const result = super.operate(allData.map(r => r[fieldName]));
result.push({ key: 'test', label: 'Total Discounted', summaryResult: allData.filter((rec) => rec.Discontinued).length });
return result;
}
}
Bug Fixes
- [igx-grid] disabled igxButton="flat | icon" don't look like disabled in the igxToolbarCustomContent. #4958
- Pressing Down Arrow while summaries are focused throws an error in igxHierarchicalGrid #5552
- When browser is zoomed cannot select last cell with keyboard #4520
- HGrid Keyboard Navigation does not work correctly when there is an expanded 3-rd level child grid with no data #5251
- NavDrawer breaks server-side rendering #4426
- When group a template column it gets the name of column group before it #5643
- IgxTabs: Incorrect layout on first page load #5582
- igxTextHighlight directive uses inline styles #5403
- [Combo] label is positioned incorrectly #5599
- Grid edited cell text is partially not visible #5902
- ExpressionChangedAfterItHasBeenCheckedError: Expression has changed after it was checked. #5897
- IgxChip onSelection.originalEvent property returns null event when selecting using mouse click. #5940
- In IE11 and Edge the focused style is not applied to the filter chip #5722
- Advanced Filtering Dialog should not display column groups #5886
- [igx-grid] expose grid.verticalScrollContainer.igxForOf as dataView property #5069
- Paging is not working #5949
- In the dark theme when hover a selected row, cells content is not visible #5959