Activities of "liangshiwei"

Hi,

ABP extracted AbpExtensibleDataGrid to make DataGrid easy. https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor

You can use it in most cases, it will make your development easier, but when you want to fully control each column, you need to use DataGrid, you can see the document : https://blazorise.com/docs/extensions/datagrid/

Hi,

You can try:

public class MySettingPageContributor : ISettingPageContributor
{
    public async Task ConfigureAsync(SettingPageCreationContext context)
    {

        context.Groups.RemoveAll(x => x.Id == "Volo.Abp.EmailSetting");

        var leptonThemeSettingPageGroup = context.Groups.FirstOrDefault(x => x.Id == "Volo.Abp.LeptonThemeManagement");

        if (leptonThemeSettingPageGroup != null)
        {
            leptonThemeSettingPageGroup.ComponentType = typeof(MyLeptonThemeSettingGroupViewComponent);
        }
    }

    public Task<bool> CheckPermissionsAsync(SettingPageCreationContext context)
    {
        return Task.FromResult(true);
    }
}

Configure<SettingManagementPageOptions>(options =>
{
    options.Contributors.Add(new MySettingPageContributor());
});

You can use ABP Suite to download the Lepton Theme source code.

The setting document: https://docs.abp.io/en/abp/latest/Modules/Setting-Management#mvc-ui

Hi,

Maybe you can create a simple project to reproduce and share it to me, as you know, the network is not good when we using zoom to connect.

Hi,

I think you can try it first and reply here.

Discuss in: https://support.abp.io/QA/Questions/2048/Framework-not-supporting-the-listed-items-Need-urgent-help

Hi,

Tenant based login

ABP provides multiple ways to determine the current tenant and allows custom tenant resolvers: https://docs.abp.io/en/abp/latest/Multi-Tenancy. I think it can help you.

Tenant based Token Generation for Login (API)- Mobile App

Actually, this is not related to ABP but IdentityServer, you can customize any grant type: https://identityserver4.readthedocs.io/en/latest/topics/extension_grants.html

To Configure Roles in BIMS with BDairy Feature list

As I said, you need to add the BDairy's application contract project reference to BIMS and add Add module dependencies.

For example:

[DependsOn(typeof(BDairyApplicationContractModule))]
public class BIMSApplicationContractModule ...
{
}

How to remove the Additional tables like AbpUsers in BIMS BDairy

Open your DbContext and remove builder.ConfigureIdentity(); or anything you want do delete.

How to do Redis Configuration

Actually, I don't understand this question, I guess you want to install Redis on WinServer right? Redis does not provide an official Windows installation package, we recommend you to use linux as the redis server.

HTTPS in deployment

Can you share the logs?

Hi,

We are facing issue in establishing multiple applications setup with ABP Module Template.

I think your initial problem has been solved, please create a new question, thanks.

You can share the repo to me: shiwei.liang@volosoft.com, thanks.

Hi,

I need to reproduce the problem then I can help you solve it. could you share full steps? it will be helpful.

1)Tenant based login - AbpUsers, AbpUserRoles - StoreManager,Admin,HR - High level people

See https://docs.abp.io/en/abp/latest/Multi-Tenancy#determining-the-current-tenant You need to pass the tenant argument, like:

var tokenResponse = await client.RequestPasswordTokenAsync(new PasswordTokenRequest
{
    Address = disco.TokenEndpoint + "?__tenant=....",
    ClientId = _configuration["IdentityClients:Default:ClientId"],
    ClientSecret = _configuration["IdentityClients:Default:ClientSecret"],
    UserName = _configuration["IdentityClients:Default:UserName"],
    Password = _configuration["IdentityClients:Default:UserPassword"],
    Scope = _configuration["IdentityClients:Default:Scope"]
});

2)Tenant based Token Generation for Login (API)- Mobile App

You can check : https://stackoverflow.com/questions/44172221/generate-access-token-with-identityserver4-without-password

3)To Configure Roles in BIMS with BDairy Feature list.(Screen Permissions)

You need reference the applicllation.contarct project to load prmission definitions

4)How to remove the Additional tables like AbpUsers in BIMS BDairy

You just need to unintall the module you don't want and create&apply migration file

5)How to do Redis Configuration

You just need to install redis server and configure connection string.

6)HTTPS in deployment

What is the error log?

Showing 4841 to 4850 of 5995 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 18, 2024, 05:54