Activities of "DanLo"

Answer

Thanks for help!. it worked. We didn't know it was a setting!.

Answer

What do you mean by using container-fluid? The classes you see in the image are from when we created the project using your instructions.

We can't find anywhere to change them.

Is there a way to extract these files into the project so we can edit them? For example, there is no MainLayout file in the project. If we remove class="lpx-content" in the browser's developer tools, we get the look we want.

Question
  • ABP Framework version: v8.2
  • UI Type: Blazor WASM
  • Database System: EF Core (SQL Server, Oracle, MySQL, PostgreSQL, etc..) / MongoDB
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes/no
  • Exception message and full stack trace:
  • Steps to reproduce the issue

Why are we not getting full width on .lpx-content? We have tried writing custom CSS to override .lpx-content and inheriting from the parent without success. The parent CSS .lpx-content-wrapper is as large as we want it to be. Any suggestions? Even if we set margin, border, and padding to 0, we still don't get full width. See screenshot!

Screenshot 2.png

When creating static clientproxies in cli how do i get it with attributes? Command i run in PS : abp generate-proxy -t csharp -m customer -url http://localhost:xxxx/

I get files in clientproxis mapp but without attributes.

Her is a part of my generated dto class:

public abstract class CustomerCreateDtoBase
{
    [Required]
    [StringLength(CustomerConsts.NameMaxLength, MinimumLength = CustomerConsts.NameMinLength)]
    public string Name { get; set; } = null!;

    [Required]
    [StringLength(CustomerConsts.StreetMaxLength)]
    public string Street { get; set; } = null!;
    
    [Required]
    [RegularExpression(@"[0-9]+")]
    [StringLength(CustomerConsts.ZipCodeMaxLength, MinimumLength = CustomerConsts.ZipCodeMinLength)]
    public string ZipCode { get; set; } = null!;
    
    [Required]
    [StringLength(CustomerConsts.CityMaxLength)]
    public string City { get; set; } = null!;
    
    [Required]
    [RegularExpression(@"\+[0-9]+-[0-9]+")]
public string PhoneNumber { get; set; } = null!;

We have made services in abp studio so these classes are generated.

Showing 1 to 4 of 4 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
Do you need assistance from an ABP expert?
Schedule a Meeting
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v9.3.0-preview. Updated on April 11, 2025, 10:10