Skip to content

Commit e4d72d8

Browse files
docs(common): observable data update
1 parent bf2ebb9 commit e4d72d8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

common-features/observable-data.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ position: 1
1212

1313
Databound components can benefit from live data - when the data source collection changes, the components should update to reflect that change. Most data-bound components in the Telerik UI for Blazor suite implement such functionality.
1414

15-
When the `Data` of the component is a collection that implements the `INotifyCollectionChanged` interface (such as `ObservableCollection`), the Telerik components subscribe to its `CollectionChanged` event to update. This means that adding and removing items, or clearing the collection updates the components.
15+
When the `Data` of the component is a collection that implements the `INotifyCollectionChanged` interface (such as `ObservableCollection`), the Telerik components subscribe to its `CollectionChanged` event to update. This means that adding items, removing items, or clearing the collection updates the components (its `.Add()`, `.Remove()` and `.Clear()` methods).
1616

1717
The following components support observable data:
1818

19-
* [AutoComplete](https://demos.telerik.com/blazor-ui/autocomplete/observable-data)
19+
* AutoComplete
2020

21-
* [ComboBox](https://demos.telerik.com/blazor-ui/combobox/observable-data)
21+
* ComboBox
2222

23-
* [DropDownList](https://demos.telerik.com/blazor-ui/dropdownlist/observable-data)
23+
* DropDownList
2424

2525
* [Grid](https://demos.telerik.com/blazor-ui/grid/observable-data)
2626

27-
* [MultiSelect](https://demos.telerik.com/blazor-ui/multiselect/observable-data)
27+
* MultiSelect
2828

29-
* [TreeView](https://demos.telerik.com/blazor-ui/treeview/observable-data)
29+
* TreeView
3030

3131
The Scheduler and Menu will receive this feature in a future release.
3232

0 commit comments

Comments
 (0)