mirror of https://github.com/abpframework/abp.git
csharpabpc-sharpframeworkblazoraspnet-coredotnet-coreaspnetcorearchitecturesaasdomain-driven-designangularmulti-tenancy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
@page
|
|
@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal
|
|
@model Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo.Pages.Components.ModalsModel
|
|
@{
|
|
ViewData["Title"] = "Modals";
|
|
}
|
|
|
|
<h2>Modals</h2>
|
|
|
|
<p>Based on <a href="https://getbootstrap.com/docs/4.1/components/modals/" target="_blank"> Bootstrap Modal</a>.</p>
|
|
|
|
<h4># Modal Example</h4>
|
|
|
|
<div class="demo-with-code">
|
|
<div class="demo-area">
|
|
|
|
<abp-modal>
|
|
|
|
<abp-modal-header title="Header"></abp-modal-header>
|
|
|
|
<abp-modal-body>
|
|
Body
|
|
</abp-modal-body>
|
|
|
|
<abp-modal-footer buttons="@(AbpModalButtons.Save|AbpModalButtons.Close)"></abp-modal-footer>
|
|
|
|
</abp-modal>
|
|
|
|
</div>
|
|
<div class="code-area">
|
|
<pre>
|
|
<abp-modal>
|
|
<abp-modal-header title="Header"></abp-modal-header>
|
|
<abp-modal-body>
|
|
Body
|
|
</abp-modal-body>
|
|
<abp-modal-footer buttons="(AbpModalButtons.Save|AbpModalButtons.Close)"></abp-modal-footer>
|
|
</abp-modal>
|
|
</pre>
|
|
</div>
|
|
</div>
|
|
|