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: components/dockmanager/events.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
@@ -15,8 +15,8 @@ This article explains the events available in the Telerik DockManager for Blazor
15
15
*[OnDock](#ondock)
16
16
*[OnUndock](#ondock)
17
17
*[VisibleChanged](#visiblechanged)
18
-
*[UnpinnedSizeChanged](#unpinnedsizechanged)
19
18
*[SizeChanged](#sizechanged)
19
+
*[UnpinnedSizeChanged](#unpinnedsizechanged)
20
20
*[OnPaneResize](#onpaneresize)
21
21
*[State Events](#state-events)
22
22
*[OnPin](#onpin)
@@ -50,17 +50,17 @@ The event handler receives as an argument an `DockManagerUndockEventArgs` object
50
50
51
51
The `VisibleChanged` event is fired when the user tries to hide a given pane. You can effectively cancel the event by not propagating the new visibility state to the variable the `Visible` property is bound to. This is the way to cancel the event and keep the pane visible.
52
52
53
-
## UnpinnedSizeChanged
54
-
55
-
The `UnpinnedSizeChanged` event is triggered when the `UnpinnedSize` parameter of the corresponding pane is changed.
56
-
57
53
## SizeChanged
58
54
59
55
The `SizeChanged` event is triggered when the `Size` parameter of the corresponding pane is changed.
60
56
57
+
## UnpinnedSizeChanged
58
+
59
+
The `UnpinnedSizeChanged` event is triggered when the `UnpinnedSize` parameter of the corresponding pane is changed.
60
+
61
61
## OnPaneResize
62
62
63
-
The `OnPaneResize` event is fired when any pane is resized. It lets you respond to that change if needed - for example, call the `.Refresh()` method of a chart or otherwise repaint a child component in the content. You can also use it to, for example, update the saved [state](slug:dockmanager-state) for your users.
63
+
The `OnPaneResize` event is fired when a pane is resized, except unpinned panes. It lets you respond to that change if needed - for example, call the `.Refresh()` method of a chart or otherwise repaint a child component in the content. You can also use it to, for example, update the saved [state](slug:dockmanager-state) for your users.
64
64
65
65
The event handler receives as an argument an `DockManagerPaneResizeEventArgs` object that contains:
66
66
@@ -259,6 +259,8 @@ The event handler receives as an argument an `DockManagerUnpinEventArgs` object
0 commit comments