Activities of "lizhaofeng"

  • ABP Framework version: v7.3.0
  • UI Type:Blazor Server
  • Database System: EF Core (SQL Server)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes
  • Steps to reproduce the issue:

How to set up a multi-layered Blazor service project to open with a login page by default, and how to configure it to return to the login page upon logout?

hi,liangshiwei

it works fine,thx

You can actually add language texts through the following methods without the need to add them in JSON.

However, it is still hoped that abp can be provided for adding them from the frontend UI.

  var text = (await LanguageTextRepository.GetListAsync()).FirstOrDefault(l =>
                l.CultureName == input.CultureName && l.ResourceName == input.ResourceName &&
                l.Name == input.Name);

            if (text == null)
            {
                await LanguageTextRepository.InsertAsync(
                    new LanguageText(GuidGenerator.Create(), input.ResourceName, input.CultureName, input.Name, input.Value, CurrentTenant?.Id)
                );
            }
            else
            {
                text.Value = input.Value;
                await LanguageTextRepository.UpdateAsync(text);
            }

Currently, a single button can only be implemented using the following method. However, it is desired that the button should not be displayed if there is no list.

There may be scenarios where users do not have permission, resulting in only a single button appearing.

Shayne it's not a bug and already implemented.

See https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor#L37C25-L37C41

Hi alper ABP Suite generates CRUD pages using the DataGrid by default rather than AbpExtensibleDataGrid, the issue may still exist for DataGrid.

In the process of generating CRUD pages with abpSuite, I encountered Error CS1737.

abp suite 7.4.0-rc4

  • ABP Framework version: v7.4.0
  • UI Type: Blazor Server
  • Database System: EF Core
  • Tiered (for MVC) or Auth Server Separated (for Angular): no
  • Exception message and full stack trace:
  • Steps to reproduce the issue:

Blazorise Version 1.3.1

The Autocomplete control exhibits abnormal behavior in the LeptonX theme.

It works fine when Disabled is set to false.

When Disabled is set to true, it displays an issue where the text inside the control appears unclear or distorted.

hi jfistelmann

How about using different CSS styles for different appearances? The following CSS works correctly in Light mode but appears unclear in Dark mode.

<style> .badge.bg-light { color: #343a40 !important; background-color: #e6ebef !important; } </style>

Thanks

ABP Suite does not support generating CRUD pages for entities with GUID types.

Only the Application template does not support it.

Showing 41 to 50 of 83 entries
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.1.0-preview. Updated on December 05, 2025, 12:34
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.