Column
in namespace DotVVM.Framework.Controls.Bootstrap
Renders a Boostrap column. Use this control inside the Row control.
Usage & Scenarios
Renders a Boostrap Column. Use this control inside the Row. https://getbootstrap.com/docs/3.3/css/#grid
Sample 1: Column Sizes
You can specify the size of the Column (in the Bootstrap grid system) for each screen size by setting the following properties:
SizeXS
SizeSM
SizeMD
SizeLG
SizeXL
<bs:Column SizeXS="4" SizeLG="10" style="background-color: red; color: white">
XS = 4/12 | LG = 10/12
</bs:Column>
<bs:Column SizeXS="8" SizeLG="2" style="background-color: blue; color: white">
XS = 8/12 | LG = 2/12
</bs:Column>
Sample 2: Column Offsets
To shift the column to the right use the following properties:
OffsetXS
OffsetSM
OffsetMD
OffsetLG
OffsetXL
<bs:Column SizeXS="7" SizeLG="2" style="background-color: blue; color: white">
no offset
</bs:Column>
<bs:Column SizeXS="5" OffsetLG="4" SizeLG="6" style="background-color: red; color: white">
offset = 4 for the large screen
</bs:Column>
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
static value
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 | |
OffsetLG | Int32? | Gets or sets the offset of the column in the LG mode. |
attribute
static value
|
null | |
OffsetMD | Int32? | Gets or sets the offset of the column in the MD mode. |
attribute
static value
|
null | |
OffsetSM | Int32? | Gets or sets the offset of the column in the SM mode. |
attribute
static value
|
null | |
OffsetXL | Int32? | Gets or sets the offset of the column in the XL mode. |
attribute
static value
|
null | |
OffsetXS | Int32? | Gets or sets the offset of the column in the XS mode. |
attribute
static value
|
null | |
SizeLG | Int32? | Gets or sets the horizontal size of the column in the LG mode. |
attribute
static value
|
null | |
SizeMD | Int32? | Gets or sets the horizontal size of the column in the MD mode. |
attribute
static value
|
null | |
SizeSM | Int32? | Gets or sets the horizontal size of the column in the SM mode. |
attribute
static value
|
null | |
SizeXL | Int32? | Gets or sets the horizontal size of the column in the XL mode. |
attribute
static value
|
null | |
SizeXS | Int32? | Gets or sets the horizontal size of the column in the XS mode. |
attribute
static value
|
null | |
Visible | Boolean | Gets or sets whether the control is visible. |
attribute
bindable
|
True |