9.1.0-alpha.3
Pre-release
Pre-release
·
15873 commits
to master
since this release
General
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Behavioral Change - When a column is sortable sort indicator is always visible. The column is sorted when click on it.
Themes
- Breaking Change Change the default
$legacy-supportvalue to false in theigx-themefunction.
New Features
-
IgxGrid,IgxTreeGrid,IgxHierarchicalGrid- Added support for pinning columns on the right. Change the position of pinning using the new
pinninginput.
<igx-grid [data]="data" [pinning]="pinningConfiguration"></igx-grid>
public pinningConfiguration: IPinningConfig = { columns: ColumnPinningPosition.End };
- Added functionality for column selection.
selectedproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selected.selectableproperty has been added to the IgxColumnComponent; Allows you to set whether the column is selectable.onColumnSelectionChangeevent is added for theIgxGrid. It is emitted when the column selection is changed.excelStyleSelectingTemplateproperty is introduced to IgxGrid, which allows you to set a custom template for the selecting a column in the Excel Style Filter.selectedColumnsAPI method is added for theIgxGrid. It allows to get all selected columns.selectColumnsAPI method is added for theIgxGrid. It allows to select columns by passing array of IgxColumnComponent or column fields.deselectColumnsAPI method is added for theIgxGrid. It allows to deselect columns by passing array of IgxColumnComponent or column fields.deselectAllColumnsAPI method is added for theIgxGrid. It allows to deselect all columns.getSelectedColumnsDataAPI method is added for theIgxGrid. It allows to get the selected columns data.
- Added support for pinning columns on the right. Change the position of pinning using the new
-
IgxCombo:- Added
autoFocusSearchinput that allows to manipulate the combo's opening behavior. When the property istrue(by default), the combo's search input is focused on open. When set tofalse, the focus goes to the combo items container, which can be used to prevent the software keyboard from activating on mobile devices when opening the combo.
- Added
RTL Support
igxSliderhave full right-to-left (RTL) support.