aspnetbootstrap-devexpress-dot-web-dot-bootstrap-e51fa09e.md
A control to display a list of check boxes.
Namespace : DevExpress.Web.Bootstrap
Assembly : DevExpress.Web.Bootstrap.v25.2.dll
NuGet Package : DevExpress.Web.Bootstrap
[DXClientDocumentationProviderWeb("BootstrapCheckBoxList")]
[ToolboxTabName("DX.25.2: Bootstrap Controls")]
public class BootstrapCheckBoxList :
ASPxCheckBoxList,
ISimpleRenderControl,
IBootstrapEditorCssClassesOwner,
IBootstrapListItemCaptionOwner
<ToolboxTabName("DX.25.2: Bootstrap Controls")>
<DXClientDocumentationProviderWeb("BootstrapCheckBoxList")>
Public Class BootstrapCheckBoxList
Inherits ASPxCheckBoxList
Implements ISimpleRenderControl,
IBootstrapEditorCssClassesOwner,
IBootstrapListItemCaptionOwner
Note
The BootstrapCheckBoxList control provides you with comprehensive client-side functionality implemented using JavaScript code:
The control’s client-side API is enabled if the ASPxEditBase.EnableClientSideAPI property is set to true, or the ASPxEditBase.ClientInstanceName property is defined, or any client event is handled.
This example demonstrates the basic functionality of the Check Box List control.
BootstrapCheckBoxList class.The image below shows the result:
<dx:BootstrapCheckBoxList runat="server">
<Items>
<dx:BootstrapListEditItem Text="WinForms" Value="WinForms" />
<dx:BootstrapListEditItem Text="ASP.NET" Value="ASP.NET" Selected="true" />
<dx:BootstrapListEditItem Text="ASP.NET MVC" Value="ASP.NET MVC" Selected="true" />
<dx:BootstrapListEditItem Text="WPF" Value="WPF" />
</Items>
</dx:BootstrapCheckBoxList>
Show 13 items
Object Control WebControl ASPxWebControlBase ASPxWebControl ASPxDataWebControlBase ASPxDataWebControl ASPxEditBase ASPxEdit ASPxListEdit ASPxCheckListBase ASPxCheckBoxList BootstrapCheckBoxList
See Also