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: docs/core/components/card-view.component.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
Title: Card View component
3
3
Added: v2.0.0
4
4
Status: Active
5
-
Last reviewed: 2018-05-09
5
+
Last reviewed: 2024-10-29
6
6
---
7
7
8
8
# [Card View component](../../../lib/core/src/lib/card-view/components/card-view/card-view.component.ts"Defined in card-view.component.ts")
@@ -353,6 +353,7 @@ const selectItemProperty = new CardViewSelectItemModel(options);
353
353
| key\*| string || Identifying key (important when editing the item) |
354
354
| editable | boolean | false | Toggles whether the item is editable |
355
355
| value | string || The original data value for the item |
356
+
| autocompleteBased | boolean | false | Indicates whether the select item should use autocomplete functionality. If set to true, the select item will provide an autocomplete input field. |
356
357
| options$\*|[`Observable`](http://reactivex.io/documentation/observable.html)<[`CardViewSelectItemOption`](../../../lib/core/src/lib/card-view/interfaces/card-view-selectitem-properties.interface.ts)\[]> || The original data value for the item |
The `autocompleteInputValue$` property is a Subject that emits the current value of the autocomplete input field. This can be used to track changes in the input field and respond accordingly.
143
+
144
+
### Example
145
+
146
+
You can subscribe to `autocompleteInputValue$` to get the current value of the autocomplete input field and update the options accordingly.
0 commit comments