wv-button-toolbar
Purpose
<wv-button-toolbar/>
. Used to wrap multiple <wv-button-group/>
and render them horizontal or vertical.
Properties
name | description |
---|---|
class |
object type: default value: is required: CSS classes that you may need to add to the standard Bootstrap CSS |
id |
object type: default value: is required: Html ID you may need to set to the rendered element |
is-vertical |
object type: default value: is required: If TRUE, will render the button list vertically. |
size |
object type: default value: is required: Size of the element. Options are: Normal,Small,Large, Inherit |
Example
<wv-button-toolbar size="@CssSize.Small">
<wv-button-group>
<wv-button text="Prev"></wv-button>
</wv-button-group>
<wv-button-group>
<wv-button text="1"></wv-button>
<wv-button text="2"></wv-button>
<wv-button text="3"></wv-button>
</wv-button-group>
<wv-button-group>
<wv-button text="Next"></wv-button>
</wv-button-group>
</wv-button-toolbar>