Activities of "liangshiwei"

Hi,

This has nothing to do with ABP Even if you use the ASPNETCore application without ABP, it is the same, you can create an issue on the Blazorise repo.

See: https://blazorise.com/docs/components/validation

Hi,

We did not implement this function in ABP.

I can give you some idea

  • When the user logins you can add a random GUID value to the claims, and store the GUID in the cache(can be a list, if you want to limit to allow only three concurrent logins, then the length of the list is 3 : https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory
  • Write an ASPNETCORE middleware to check the current user's claims, if the GUID value is not in the allowed list, return unauthorized

Hi,

We did not implement this functionality for the theme.

You can do it by overriding the component:

MyMainMenuItem

https://gist.github.com/realLiangshiwei/f3b8c51c576a10ac220d11a6b0dc2cfe

main.js


$(function(){
    var initTooltipTrigger = function () {
        var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]'))
        var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) {
            return new bootstrap.Tooltip(tooltipTriggerEl)
        })
    }

    initTooltipTrigger();
})
Configure<AbpBundlingOptions>(options =>
{
    options.ScriptBundles.Configure(
        BlazorLeptonXThemeBundles.Scripts.Global,
        bundle =>
        {
            bundle.AddFiles("/main.js");
        }
    );
});

Hi,

Unfortunately, it's not possible.

Here is a good explanation: https://stackoverflow.com/questions/36018140/custom-aspnet-identity-one-to-many-relationship-using-multiple-context-applicati

Hi,

Hi, I already fixed this error, coz I didn't know public web site must be migrated to LeptonX

Sorry I didn't notice you were using the Lepton theme, you don't have to migrate to LeptonX.

But now I have other problem, after migrate to .Net 7 I having this issue:

Did you follow the migration guide?

https://docs.abp.io/en/abp/latest/Migration-Guides/Index https://docs.abp.io/en/commercial/latest/migration-guides/index

Hi,

You have to replace the component: https://docs.abp.io/en/abp/latest/UI/Blazor/Customization-Overriding-Components?UI=Blazor

Hi,

ABP will create an entity JSON file under the .suite/entities

You can create a simple console application to read the json file and change the property format.

you can give it a try

ok

yes

Showing 4011 to 4020 of 6693 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 November 03, 2025, 07:01