BootstrapButtonBootstrapSpecificSettingsBase.RenderOption Property
Specifies Bootstrap-specific styles that can be applied to the editors that contain edit buttons.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.2.dll
NuGet Package: DevExpress.Web.Bootstrap
#Declaration
[DefaultValue(BootstrapRenderOption.Default)]
public BootstrapRenderOption RenderOption { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Bootstrap |
Default | A Bootstrap |
Available values:
Name | Description |
---|---|
None | The none style is applied to a control. |
Default | Default. A control renders with its default styles. |
Primary | The primary style is applied to a control. |
Secondary | The secondary style is applied to a control. |
Success | The success style is applied to a control. |
Info | The info style is applied to a control. |
Warning | The warning style is applied to a control. |
Danger | The danger style is applied to a control. |
Link | The link style is applied to a control. |
Light | The light style is applied to a control. |
Dark | The dark style is applied to a control. |
#Property Paths
You can access this nested property as listed below:
Object Type | Path to Render |
---|---|
Bootstrap |
|
#Remarks
<dx:BootstrapButtonEdit runat="server" Text="Sample Text">
<ClientSideEvents ButtonClick="OnButtonClick" />
<Buttons>
<dx:BootstrapEditButton>
<SettingsBootstrap RenderOption="Primary" />
</dx:BootstrapEditButton>
...
</Buttons>
</dx:BootstrapButtonEdit>