Good news.
hi
All we need is that we can specify a custom date format for the date displayed in cell.
The DisplayFormatAttribute will work in the next version.
var format = new DisplayFormatAttribute()
{
DataFormatString = "dd/MM/yyyy HH:mm:ss",
NullDisplayText = ""
};
You don't need to override the whole page with the custom DateTimeExtensionProperty component.
: )
Currently need to reproduce your problem.
Are there any logs on Nginx?
hi
You can try to override the Footer component in your blazor project, I will add this component in next version.
MyFooter.razor
@using Volo.Abp.DependencyInjection
@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.SideMenu
@inherits Footer
@attribute [ExposeServices(typeof(Footer))]
@attribute [Dependency(ReplaceServices = true)]
<div class="lpx-footbar-container">
<div class="lpx-footbar">
<div class="lpx-footbar-copyright">
<span>@DateTime.UtcNow.Year©</span>
<a href="https://leptontheme.com/" target="_blank">Lepton Theme</a>
<span>by</span>
<a href="https://volosoft.com/" target="_blank">Volosoft</a>
</div>
<div class="lpx-footbar-solo-links">
<a href="#">About</a>
<a href="#">Privacy</a>
<a href="#">Contact</a>
</div>
</div>
</div>
hi
Volo.Abp.Account.AbpAccountApplicationContractsModule
Have you replaced all open-source modules with PRO?
AbpAccountApplicationContractsModule is an open-source module.
Your ticket has been refunded.
hi
You can try to override the DateTimeExtensionProperty component
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/ObjectExtending/DateTimeExtensionProperty.razor#L15
I will make it support DisplayFormatAttribute in the next version.
https://github.com/abpframework/abp/issues/20037