0
niall created
- ABP Framework version: v8.2.2
- UI Type: MVC
- Database System: EF Core (MySQL)
- Tiered (for MVC) or Auth Server Separated (for Angular): yes
- Exception message and full stack trace:
- Steps to reproduce the issue:
I use the LeptonX theme(MVC UI), Could tell me where to find the document for components like abp-input
, abp-button
,abp-card
,etc ...?
@page
@using System.Globalization
@using Microsoft.AspNetCore.Mvc.Localization
@using Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.TagHelpers.Modal
@using XTC.License.Localization
@using XTC.License.Web.Pages.License.Space
@using XTC.License.Space;
@inject IHtmlLocalizer<LicenseResource> L
@model EditModalModel
@{
Layout = null;
}
<form data-ajaxForm="true" asp-page="/License/Space/EditModal" autocomplete="off">
<abp-modal id="SpaceEditModal">
<abp-modal-header title="@L["Update"].Value"></abp-modal-header>
<abp-modal-body>
<abp-input asp-for="Id" />
<abp-input asp-for="Space.ConcurrencyStamp" hidden="true" suppress-label="true"/>
<abp-input asp-for="Space.Name" readonly="true" />
<!-- Other properties
<abp-input asp-for="Space.OtherProperty" />
-->
</abp-modal-body>
<abp-modal-footer buttons="@(AbpModalButtons.Cancel|AbpModalButtons.Save)">
</abp-modal-footer>
</abp-modal>
</form>
I saw the https://x.leptontheme.com/side-menu/components/bootstrap/card, https://abp.io/docs/latest/ui-themes/lepton-x/mvc, but nothing found about those components. I want to know how many components about abp-*
and how to use them.
2 Answer(s)
-
0
Hello niall ,
Please check out
- https://abp.io/docs/latest/framework/ui/mvc-razor-pages/tag-helpers/form-elements?_redirected=B8ABF606AA1BDF5C629883DF1061649A
- https://abp.io/docs/latest/framework/ui/mvc-razor-pages/tag-helpers/buttons?_redirected=B8ABF606AA1BDF5C629883DF1061649A
- https://abp.io/docs/latest/framework/ui/mvc-razor-pages/tag-helpers/cards?_redirected=B8ABF606AA1BDF5C629883DF1061649A
Or else you can download the source code of LeptonX module from
And then check for the desired code.
Thanks,
-
0
OK, Thanks~