ButtonToolbar
in namespace DotVVM.Framework.Controls.Bootstrap4
Combines ButtonGroups or InputGroups into button toolbars.
Usage & Scenarios
Render a Bootstrap button toolbar which consists of one or more ButtonGroup or InputGroup controls.
https://getbootstrap.com/docs/4.3/components/button-group/#button-toolbar
Sample 1: ButtonToolbar Usage
Place ButtonGroup
or InputGroup
controls inside the toolbar element.
The HorizontalAlignment
property allows to specify the alignment for the toolbar content.
Start
aligns the items to the left.Center
aligns the items to the middle.End
aligns the items to the right.Around
distributes the remaining space equally around every items.Between
distributes the remaining space equally in the gaps between items.
<bs:ButtonToolbar>
<bs:ButtonGroup>
<bs:Button Text="Button 1" Type="Primary" />
<bs:Button Text="Button 2" Type="Secondary" />
</bs:ButtonGroup>
<bs:InputGroup>
<LeftTemplate>
<bs:InputGroupLiteral Text="@" />
</LeftTemplate>
<ContentTemplate>
<bs:InputGroupTextBox Text="" />
</ContentTemplate>
</bs:InputGroup>
</bs:ButtonToolbar>
Properties
Name | Type | Description | Notes | Default Value | |
---|---|---|---|---|---|
Attributes | Dictionary<String,Object> |
attribute
static value
|
null | ||
ClientIDMode | ClientIDMode | Gets or sets the client ID generation algorithm. |
attribute
static value
|
Static | |
DataContext | Object | Gets or sets a data context for the control and its children. All value and command bindings are evaluated in context of this value. |
attribute
bindable
|
null | |
ID | String | Gets or sets the unique control ID. |
attribute
static value
bindable
|
null | |
IncludeInPage | Boolean | Gets or sets whether the control is included in the DOM of the page. |
attribute
bindable
|
True | |
InnerText | String | Gets or sets the inner text of the HTML element. |
attribute
static value
bindable
|
null | |
Items | List<IButtonToolbarItem> | Gets or sets the contents of the button toolbar. |
inner element
static value
default
|
null | |
Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True |