Open Closed

auto generated crud create/edit modals in leptonX #4170


User avatar
0
SelcukDuran created
  • ABP Framework version: v6.0.2
  • UI type: MVC
  • DB provider: EF Core

how can we specialize auto generated crud form create/edit modals with multiple columns ? we want to display [label & field] in same row. is it possible in crud operations ?

using ABP suite, MVC EFCore, UI: LeptonX

is there any leptonX theme specialization documentation for auto generated crud operations?

Markdown supported.
Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)

1 Answer(s)
  • User Avatar
    0
    yekalkan created
    Support Team Fullstack Developer

    Hi,

    You can change the generated *.cshtml files to change the modal's appearance.

    we want to display [label & field] in same row. is it possible in crud operations ?

    You can use suppress-label to remove the label. <abp-input asp-for="@Model.MyModel.Name" suppress-label="true"/>

    and then add the label and field manually into a row:

    <div class="row">
        <div class="col col-3">
            <label for="MyModel_Name">Name</label>
        </div>
        <div class="col col-9">
            <abp-input asp-for="@Model.MyModel.Name"/>
        </div>
    </div>
    
    Markdown supported.
    Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.8.0-preview. Updated on September 16, 2026, 14:50
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.