Skip to main content
All docs
V25.1
  • BootstrapDropDownEditModalCommandButton.Visible Property

    Specifies whether the BootstrapDropDownEdit drop-down window’s command button is visible.

    Namespace: DevExpress.Web.Bootstrap

    Assembly: DevExpress.Web.Bootstrap.v25.1.dll

    NuGet Package: DevExpress.Web.Bootstrap

    Declaration

    [DefaultValue(false)]
    public bool Visible { get; set; }

    Property Value

    Type Default Description
    Boolean false

    true to display a command button; otherwise, false.

    Remarks

    To display a command button, set the button’s Visible property to true. Note that the control displays buttons only in modal mode.

    Apply Button

    <dx:BootstrapDropDownEdit ID="BootstrapDropDownEdit1" runat="server">
        <SettingsAdaptivity Mode="OnWindowInnerWidth" SwitchToModalAtWindowInnerWidth="1000" />
        <DropDownApplyButton Visible="true"/>
        <DropDownWindowTemplate>
            <dx:BootstrapCheckBoxList ID="BootstrapCheckBoxList1" runat="server">
                <Items>
                    <dx:BootstrapListEditItem Text="1"></dx:BootstrapListEditItem>
                    <dx:BootstrapListEditItem Text="2"></dx:BootstrapListEditItem>
                    <dx:BootstrapListEditItem Text="3"></dx:BootstrapListEditItem>
                </Items>
            </dx:BootstrapCheckBoxList>
        </DropDownWindowTemplate>
    </dx:BootstrapDropDownEdit>
    
    See Also