Activities of "liangshiwei"

Yes you can.

You can custom AuditingStore to save auditlog to AWS-CloudWatch.

Hi

You can create a host application, which contains identity management module and localization management module

Hi,

The current design of the menu does not consider persistence to the database, you need to do some work for this.

1. You need to create an entity that is compatible with ApplicationMenu.

2. Create a service that persists all menus to the database when the application is initialized(If the menu is not in the database table)

3. Custom DatabaseMenuManager to replace MenuManager and get the menu from the database(should be filtered based on the current user).

Hi

Try:

Configure<IdentityOptions>(options =>
{
    //null allows all characters
    options.User.AllowedUserNameCharacters = null;
});

I created an issue https://github.com/abpframework/abp/issues/4232 for this.

Hi,

Downlown the source code and find configuration.dom .... line , replace it with the following

var dom = '<"dataTable_filters"f>rt<"row dataTable_footer"<"col-auto"l><"col-auto"i><"col"p>>';

if(configuration.dom){
    configuration.dom += dom;
}else{
    configuration.dom = dom;
}

Use BundleContributor Replace files:

public class DataTablesScriptBundleContributor : BundleContributor
{
    public override void ConfigureBundle(BundleConfigurationContext context)
    {
        context.Files.ReplaceOne(
            "/libs/abp/aspnetcore-mvc-ui-theme-shared/datatables/datatables-extensions.js",
            "/js/databales-extensions.js");
    }
}

In your index.js

var _dataTable = _$table.DataTable(abp.libs.datatables.normalizeConfiguration({
    ......
    dom :"B",
    buttons: [
        'copyHtml5',
        'excelHtml5',
        'csvHtml5',
        'pdfHtml5'
    ]
}));

Now, it works.

Do you have Teamviewer? You can send connection id to my email: liangshiw@outlook.com, Thanks.

OK, Sure.

Hi

I can't reproduce your problem, can you provide steps to reproduce?

Hi

abp suite 2.9 version will be released today

Showing 5821 to 5830 of 5957 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11