Hi,
After the "CruzVermelha" project has been deleted i created a new one (with a new license code) with the name "AbbVie", then i renamed all the files and finally replaced the license code. Everything is working, including the power tool.
Thanks, Dirceu
@ismcagdas
Do you have any example of how to do it in angular (html / typescript)?
I have same problem with version 8.7 angular/.net core
Thanks,
i've already figured it out, your answer also helped by i was trying to use the custom class - i had to add the following lines of code in the method PreInitialize from class CufHealthCareCoreModule: Configuration.ReplaceService(typeof(IAuditingStore), () => { IocManager.Register<IAuditingStore, ExtendedAuditStore>(DependencyLifeStyle.Transient); });
Hi again,
so i create the class ExtendedAuditStore and now i'm lost, can you tell me what to do now? I just want to remove the cuts from the fields in the AbpAuditLogs table - I will modify all fields to nvarchar(max) and then i want to save exactly what am i receiving in the service.
public class ExtendedAuditStore : AuditingStore { public ExtendedAuditStore(IRepository<AuditLog, long> auditLogRepository) : base(auditLogRepository) {
}
public override Task SaveAsync(AuditInfo auditInfo)
{
var result = base.SaveAsync(auditInfo);
return result;
}
}
best regards,
Dirceu
Do you have any news?
I think it has to do with this code
.ps { ** overflow: hidden !important;** overflow-anchor: none; -ms-overflow-style: none; touch-action: auto; -ms-touch-action: auto; }