NextSuite for Blazor 1.4.5
Decoration type
- Parameter of
Decorationtype is now available for allBaseControldescendants, but also for other components such asButton.
Docks and ToolPanels
- Introduced
ToolsPanelcomponent that can be dragged over the screen. It includeDockIdparameter that can be switched to a desired dock either via code or by user dragging it to dock.
<Dock DockId="top-dock" />
<ToolsPanel @bind-DockId="_dockId" Title="Tools">
...
@code {
string _dockId = "top-dock"; // Or other dock
Dockcomponent added that can be used to hostToolsPanelcomponents.Toolbarnow includes a new parameterAutoOrientationthat work well with docks:
<ToolsPanel @bind-DockId="_currentDockId"> <Toolbar AutoOrientation="true"> <ToolButton>Open</ToolButton> <ToolButton>Save</ToolButton> ...
Short video:

NextGrid
- Added
ColumnReorderingparameter toNextGrid. - Added
ChartColumnsimple chart (lines and dots style) column that acceptsList<TValue>forDataBindingparameter.
ListBox
- Added
HideDragHandlesparameter toListBox. IfReorderingistrue, items can be reordered by simple dragging.
DropDownList
- Added
AnchorLocationparameter that sets anchor (origin) from where the panel will appear.
Dialog
- Added
Modalparameter toDialogcomponent. When set totrue, user will be forced to interact with components on the dialog only. - Added
Iconparameter. It quickly sets an optional icon left of the title. Icon can be picked from one ofIconIdentifierenum.
CheckedGroup
- Added
CheckedGroupcan be used on bothButtonandToolButtoncomponents. - Added
CanUncheckAllparameter that specifies whether user can uncheck all buttons inside a group.
PopupMenu
PopupMenu component got huge improvements. It is now possible to nest menus, new stylish short-cut style is added, divider is added and much more.
- Added
PopupMenuDividercomponent that separates menu options. - Added
IconTemplateparameter that allows placing icons (or badges for example) before the text.
Short video:

Accordion
- Added CSS transition (animation) to
Accordioncomponent.
Online DEMO
Check online DEMO to see all the components in action. You can also read more on the product page.
Release notes
Get release notes PDF with all changes for Blazor components up to date.