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
+7-1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,11 @@ All notable changes for each version of this project will be documented in this
11
11
{{ value.member }}
12
12
</ng-template>
13
13
```
14
+
### New Features
15
+
- `IgxCombo` and `IgxSimpleComboComponent`
16
+
- `filterFunction` input is added. The new property allows changing of the way filtering is done in the combos. By default filtering is made over the values in combo's data when it is a collection of primitive values, or over the values as defined in `displayKey` of the combo. If custom filtering function is provided filtering will be done as specified in the provided function.
17
+
- `filteringOptions` are extended and now contains `filterable` and `filteringKey` properties. Setting `filterable` determines whether combo will be filterable. By default filtering is done over the data value when they are primitive, or over the field of the values equal to `displayKey`. `filteringKey` allows to filter data by any data related key.
18
+
- **Breaking Changes** - `filterable` property of `IgxComboComponent` is now deprecated and will be removed in future version. Use `filteringOptions.filterable` instead.
14
19
15
20
## 14.0.0
16
21
- `IgxDatePicker` and `IgxDateRangePicker` now expose a `weekStart` input property like the `IgxCalendar`
@@ -20,7 +25,8 @@ All notable changes for each version of this project will be documented in this
20
25
- The `label` attribute has been changed to `aria-labelledby` and can be set by a latterly added input property `labelledBy`.
21
26
22
27
### New Features
23
-
28
+
- `IgxCombo` and `IgxSimpleComboComponent`
29
+
- `filterFunction` input is added. The new property allows changing of the way filtering is done in the combos. By default filtering is made over the values in combo's data when it is a collection of primitive values, or over the values as defined in `displayKey` of the combo. If custom filtering function is provided filtering will be done as specified in the provided function.
0 commit comments