InputGroup
in namespace DotVVM.Framework.Controls.Bootstrap4
Renders a Bootstrap input group widget.
Usage & Scenarios
Renders a Bootstrap input group which decorates the TextBox with buttons or other controls on the side.
Sample 1: Basic Usage
- The
InputGroup
control has theContentTemplate
property which must contain InputGroupTextBox or InputGroupComboBox control.
It also has the LeftTemplate
and RightTemplate
properties that define the content on the left and right of the textbox.
The following controls are supported in these templates:
- InputGroupButton
- InputGroupCheckBox
- InputGroupDropDownButton
- InputGroupLinkButton
- InputGroupLiteral
- InputGroupRadioButton
- InputGroupRouteLink
There is also the Size
property which can be set to Large
, Small
and Default
.
<bs:InputGroup>
<LeftTemplate>
<bs:InputGroupButton Text="Button" Click="{command: UpdateText()}" />
</LeftTemplate>
<ContentTemplate>
<bs:InputGroupTextBox Text="{value: Text}" />
</ContentTemplate>
<RightTemplate>
<bs:InputGroupLiteral Text="Click the Button on the left." />
</RightTemplate>
</bs:InputGroup>
<bs:InputGroup Size="Small">
<LeftTemplate>
<bs:InputGroupCheckBox Checked="{value: Checked}" Changed="{command: UpdateText2()}" />
</LeftTemplate>
<ContentTemplate>
<bs:InputGroupComboBox SelectedValue="{value: Text2}" DataSource="{value: Values}" />
</ContentTemplate>
<RightTemplate>
<bs:InputGroupLiteral Text="Click the CheckBox on the left." />
</RightTemplate>
</bs:InputGroup>
public class ViewModel : DotvvmViewModelBase
{
public string Text { get; set; }
public int Clicks { get; set; } = 0;
public void UpdateText()
{
Clicks++;
Text = "Button was clicked " + Clicks + 'x';
}
public bool Checked { get; set; }
public string Text2 { get; set; } = "a";
public string[] Values { get; set; } = new string[] { "a", "b", "c" };
public void UpdateText2()
{
Text2 = "b";
}
}
Sample 2: Multiple Controls in the InputGroup
You can also place multiple controls in the LeftTemplate
and RightTemplate
properties.
<bs:InputGroup>
<LeftTemplate>
<bs:InputGroupRadioButton CheckedItem="{value: Color}" CheckedValue="r" Text="R" />
<bs:InputGroupRadioButton CheckedItem="{value: Color}" CheckedValue="g" Text="G" />
<bs:InputGroupRadioButton CheckedItem="{value: Color}" CheckedValue="b" Text="B" />
</LeftTemplate>
<ContentTemplate>
<bs:InputGroupTextBox Text="{value: Color}"/>
</ContentTemplate>
<RightTemplate>
<bs:InputGroupButton Text="Button 1" />
<bs:InputGroupButton Text="Button 2" />
</RightTemplate>
</bs:InputGroup>
using DotVVM.Framework.ViewModel;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace DotvvmWeb.Views.Docs.Controls.bootstrap.InputGroup.sample2
{
public class ViewModel : DotvvmViewModelBase
{
public string Color { get; set; } = "g";
}
}
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 | |
ContentTemplate | List<IInputGroupContentItem> | Gets or sets the main content of the input group. |
inner element
static value
default
|
null | |
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 | |
LeftTemplate | List<IInputGroupSideItem> | Gets or sets the left side extension of the input group. |
inner element
static value
|
null | |
RightTemplate | List<IInputGroupSideItem> | Gets or sets the right side extension of the input group. |
inner element
static value
|
null | |
Size | Size | Gets or sets the size of the input group. |
attribute
static value
bindable
|
Default | |
Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True |