Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/dockmanager/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@ The DockManager is best suited for desktop-like interfaces and applications desi

1. Add the `TelerikDockManager` tag.
2. Use `<DockManagerPanes>` to structure the main docked layout.
3. Within <DockManagerPanes>, add:
3. Within `<DockManagerPanes>`, add:
* `<DockManagerContentPane>` for standalone panes.
* `<DockManagerSplitPane>` to create sections with multiple resizable panes.
* `<DockManagerTabGroupPane>` to enable tabbed panes.
4. Define `HeaderTemplate` tag inside each pane to set the headers text.
5. Populate the `Content` tag section of each pane with the desired UI elements.
6. Optionally, `<DockManagerFloatingPanes>` to create panes that can float outside the main dock layout.
6. Optionally, add `<DockManagerFloatingPanes>` to create panes that can float outside the main dock layout.

>caption Telerik Blazor DockManager

Expand Down
2 changes: 1 addition & 1 deletion components/dockmanager/pane-types.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ position: 5

The Blazor DockManager component exposes the ability to configure different pane types.

When defining pane types, the naming convention follows the structure `<DockManager*Type*Pane>`, where **Type** specifies the behavior of the pane. The available types are:
When defining pane types, the naming convention follows the structure `<DockManager`**`Type`**`Pane>`, where **Type** specifies the behavior of the pane. The available types are:

#### Content Pane

Expand Down
Loading