igniteui-angular
Advanced tools
Changelog
6.0.3
filteredSortedData
method publicly - returns the grid data with current filtering and sorting applied.Changelog
6.0.1
Introduced migration schematics to integrate with the Angular CLI update command. You can now run
ng update igniteui-angular
in existing projects to both update the package and apply any migrations needed to your project. Make sure to commit project state before proceeding.
Currently these cover converting submodule imports as well as the deprecation of igxForRemote
and rename of igx-tab-bar
to igx-bottom-nav
from 6.0.0.
Breaking changes:
igniteui-angular
package. You can use ng update igniteui-angular
when updating to automatically convert existing submodule imports in the project.static
. So now you can use them in the following way:import { IgxNumberSummaryOperand, IgxSummaryOperand } from "igniteui-angular";
class CustomSummary extends IgxSummaryOperand {
constructor() {
super();
}
public operate(data?: any[]) {
const result = super.operate(data);
result.push({
key: "Min",
label: "Min",
summaryResult: IgxNumberSummaryOperand.min(data)
});
return result;
}
}
Changelog
6.0.0
onDoubleClick
output to igxGrid
to emit the double clicked cell.findNext
, findPrev
and clearSearch
methods to the IgxGridComponent which allow easy search of the grid data, even when the grid is virtualized.IgxTextHighlightDirective
which highlights parts of a DOM element and keeps and updates "active" highlight.All
option to the filter UI select for boolean columnsChangelog
5.3.1
false
condition will return only the real false
values, excluding null
and undefined
. Filtering by Null
will return the null
values and filtering by Empty
will return the undefined
.Filter
button in the filtering UI is replaced with a Close
button that is always active and closes the UI.X
icon that clears the input.