BlazorBSModal 2.6.5

.NET 6.0
dotnet add package BlazorBSModal --version 2.6.5
NuGet\Install-Package BlazorBSModal -Version 2.6.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="BlazorBSModal" Version="2.6.5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add BlazorBSModal --version 2.6.5
#r "nuget: BlazorBSModal, 2.6.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install BlazorBSModal as a Cake Addin
#addin nuget:?package=BlazorBSModal&version=2.6.5

// Install BlazorBSModal as a Cake Tool
#tool nuget:?package=BlazorBSModal&version=2.6.5

BlazorBSModal

Bootstrap Modal For Blazor Wasm

Install

Install this package in client_side project packages with:

Install-Package BlazorBSModal -Version x.x

x.x is version of package for use last version see https://www.nuget.org/packages/BlazorBSModal

How to use

add Bootstrap v4 css and js files in client_side _Host.cshml or index.html

help:https://getbootstrap.com/docs/4.0/getting-started/introduction/

then use:

<BlazorBSModal.BSModal CloseBtnText="Close" ModalTitle="modalTitle" @ref="Modal" OnCloseModal="closeModal" OnOpenModal="openModal">
            <ModalBodyContentHtml>
            //your Modal Body
            </ModalBodyContentHtml>
</BlazorBSModal.BSModal>

then define Modal Ref in your code for open and close Manual:

private BSModal Modal { get; set; }

then use:

Modal.Open();
Modal.Close();

Finally, you can use opening and closing events callback:

private void closeModal()
{
    Console.WriteLine("closeModal");
}
private void openModal()
{
    Console.WriteLine("openModal");
}
Product Versions
.NET net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.6.5 230 11/5/2022
2.5.5 302 6/12/2022
2.5.4 302 5/29/2022
2.5.3 306 5/29/2022
2.5.2 305 5/29/2022
2.5.1 304 5/29/2022
2.5.0 316 5/29/2022
2.4.1 316 5/29/2022
2.4.0 302 5/29/2022
2.3.0 306 5/29/2022
2.2.0 297 5/29/2022
2.1.2 299 5/23/2022
2.1.1 280 5/23/2022
2.1.0 289 5/23/2022
2.0.0 296 5/22/2022
1.0.6 264 8/31/2021
1.0.5 292 8/1/2021
1.0.4 260 7/21/2021
1.0.3 268 7/21/2021
1.0.2 155 7/21/2021
1.0.1 155 7/21/2021
1.0.0 163 7/21/2021

Close And Dispose When Click On Out Of Modal