Activities of "EngincanV"

Hi, I suggest you to upgrade version by version to prevent possible problems.

yes it worked, thank you very much.

but I don't understand how come it get changed after the upgrade.

There was a bundling problem in the previous release and we suggested renaming the flag-icons.min.css as flag-icon.min.css, and with the stable version, we've fixed this bundling problem. So we had to revert this change to the stable version.

Sorry for the misunderstanding. I close the question since your problem is resolved. Best Regards.

Hi, I guess you have libs\flag-icon-css\css\flag-icon.min.css file instead of libs\flag-icon-css\css\flag-icons.min.css (filename should be plural). So please rename it and then re-run the application.

Hi, you can override any page provided by ABP modules easily. You can simply override any page/class by creating the same file under the same path.

You can read the ASP.NET Core (MVC / Razor Pages) User Interface Customization Guide to learn more.

Also, there is a complete example to show how you can override the Login Page. You can check it here.

Hi @balessi75, it seems there is not any check on UI for Create and Edit forms. I've created an issue for this. Thanks for reporting.

Hi, can you configure the AbpMvcDataAnnotationsLocalizationOptions in your module class as below:

[DependsOn(
    //modules...
)]
public class MyBlazorModule : AbpModule
{
    public override void PreConfigureServices(ServiceConfigurationContext context)
    {
        context.Services.PreConfigure<AbpMvcDataAnnotationsLocalizationOptions>(options =>
        {
            options.AddAssemblyResource(typeof(MyResource), typeof(MyBlazorModule).Assembly);
        });
    }
}

Then you should be able to get the error messages as localized.

Answer

Hi, you can check the API Versioning documentation.

Also, there is an example for API Versioning, you can examine it.

Hi, if you have a business or enterprise license you can install the source code of the modules via Suite or CLI command. And the related Blazor package will also be installed.

For example, if you install the account module's source code, you'll be able to reach Volo.Abp.Account.Pro.Public.Blazor project and you can see the pages in this project.

Hi, please check this answer and apply the changes suggested in the answer. It should solve your problem.

Best Regards.

Hi, you can download the source code of the Lepton Theme, find the footer-related styles and change them to your needs.

Showing 501 to 510 of 724 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on November 11, 2024, 11:11