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
@@ -252,7 +252,7 @@ This sample shows only an indicator for the initial data load, only the DELETE o
252
252
}
253
253
}
254
254
````
255
-
````TreeView
255
+
````RAZORTreeView
256
256
This sample shows a loading panel over the treeview container (tweak as required by your layout and design) in addition to the loading indicators the treeview provides while loading data on demand.
Copy file name to clipboardExpand all lines: components/filter/integration.md
+5-76Lines changed: 5 additions & 76 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,12 @@ This article contains the following sections:
25
25
26
26
**To integrate the Filter with the Telerik Grid, you need to:**
27
27
28
-
1. Set the Value parameter of the Filter via [one-way]({%slug filter-events%}#valuechanged) or two-way binding.
28
+
1. Set the Value parameter of the Filter via [one-way]({%slug filter-events%}#valuechanged) or two-way binding. If you want to filter at the moment of change, use Filter with a one-way bound value.
29
29
2. Update the Grid data based on the Filter value.
30
30
31
-
>caption Filter with two-way bound value in Grid. If you want to filter at the moment of change, use Filter with a one-way bound value.
31
+
>caption Filter with two-way bound value in Grid
32
32
33
-
<divclass="skip-repl"></div>
34
-
35
-
````Two-way
33
+
````RAZOR
36
34
@using Telerik.DataSource;
37
35
@using Telerik.DataSource.Extensions;
38
36
@@ -108,76 +106,7 @@ This article contains the following sections:
Copy file name to clipboardExpand all lines: components/tabstrip/scrollable-tabs.md
+8-6Lines changed: 8 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,9 @@ If the TabStrip dimensions exceed the width or height of the page, a browser-lev
14
14
15
15
To scroll the tabs only, set the `Scrollable` bool parameter of the TabStrip to `true` (defaults to `false`). You should also set the `Width` (for tabs with [Position]({%slug tabstrip-tabs-position%}) set to top and bottom) and `Height` (for tabs with [Position]({%slug tabstrip-tabs-position%}) set to left and right) to achieve the desired behavior.
16
16
17
-
>caption Scroll the tabs only
17
+
>caption Horizontal Scrolling
18
18
19
-
<divclass="skip-repl"></div>
20
-
````HorizontalScrolling
19
+
````RAZOR
21
20
<TelerikTabStrip Scrollable="true"
22
21
Width="300px"
23
22
TabPosition="Telerik.Blazor.TabPosition.Top">
@@ -31,10 +30,13 @@ To scroll the tabs only, set the `Scrollable` bool parameter of the TabStrip to
0 commit comments