Open Closed

Where to find the document of LeptonX-MVC? #7872


User avatar
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)
  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hello niall ,

    Please check out

    1. https://abp.io/docs/latest/framework/ui/mvc-razor-pages/tag-helpers/form-elements?_redirected=B8ABF606AA1BDF5C629883DF1061649A
    2. https://abp.io/docs/latest/framework/ui/mvc-razor-pages/tag-helpers/buttons?_redirected=B8ABF606AA1BDF5C629883DF1061649A
    3. 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,

  • User Avatar
    0
    niall created

    OK, Thanks~

Made with ❤️ on ABP v9.0.0-preview Updated on September 18, 2024, 12:46