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.
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.
Hi @mukremin, can you check Suite is running or not? (or any abp command under the hook) Please, ensure it's not running and try again.
Hi, all new (after the 16th of January) customers (owners of the license) can download the ABP Framework book for free from organization detail page.
Hi @mukremin, can you rename the flag-icons.css as flag-icon.css and flag-icons.min.css as flag-icon.min.css (remove the plural 's' from both of the files) and then re-run the project again? It should work then.
Files are under the aspnet-core\src\Volo.EasyCrm.Web\wwwroot\libs\flag-icon-css\css location.