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
You can add the desired button instances by declaring the dedicated button tags. Additionally, you can individually configure their [appearance](slug:buttongroup-appearance), [enabled/disabled state](#disabled-state) and [visibility](#visibility) through the parameters of each button tag.
19
+
20
+
## ButtonGroup Button
21
+
22
+
The `ButtonGroupButton` does not change its visual state when clicked. It behaves as a regular button and does not support selection.
23
+
24
+
The `ButtonGroupButton` inherits the parameters and behavior of the [Telerik UI for Blazor Button](slug:components/button/overview) component.
You can add the desired button instances by declaring the dedicated button tags. Additionally, you can individually configure their [appearance](slug:buttongroup-appearance), [enabled/disabled state](#disabled-state) and [visibility](#visibility) through the parameters each button tag exposes.
35
+
@code {
36
+
private void OnButton1Click()
37
+
{
38
+
// ...
39
+
}
40
+
41
+
private void OnButton2Click()
42
+
{
43
+
// ...
44
+
}
45
+
46
+
private void OnButton3Click()
47
+
{
48
+
// ...
49
+
}
50
+
}
51
+
````
19
52
20
53
## ButtonGroup ToggleButton
21
54
22
55
The `ButtonGroupToggleButton` becomes selected when clicked and deselects when another one is clicked. If multiple selection is enabled, the user can select more than one `ButtonGroupToggleButton` at a time. Clicking on a selected button in this case will deselect it. Read more in the [Selection](slug:buttongroup-selection) article.
23
56
24
57
The `ButtonGroupToggleButton` inherits the parameters and behavior of the [`TelerikToggleButton`](slug:togglebutton-overview) component.
25
58
26
-
## ButtonGroup Button
59
+
>caption Using ToogleButtons in a group
27
60
28
-
The `ButtonGroupButton` does not change its visual state when clicked. It behaves as a regular button and does not support selection.
0 commit comments