Activities of "drg_tverkroost"

Question

Hi there,

I have read the documentation about audit log. Each entity is derived from the base class FullAuditedAggregateRoot. I expect each change of an entity should appear in the audit log. As you can see I have configured UseAuditing in my BlazorModule.cs to enable audit logging.

public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
var env = context.GetEnvironment();
var app = context.GetApplicationBuilder();
var configuration = context.GetConfiguration();

    if (env.IsDevelopment())
    {
        app.UseDeveloperExceptionPage();
    }

    app.UseAbpRequestLocalization();

    if (!env.IsDevelopment())
    {
        app.UseErrorPage();
        app.UseHsts();
    }

    app.UseHttpsRedirection();
    app.UseCorrelationId();
    app.UseStaticFiles();
    app.UseRouting();
    app.UseAuthentication();
    app.UseJwtTokenMiddleware();

    if (MultiTenancyConsts.IsEnabled)
    {
        app.UseMultiTenancy();
    }

    app.UseUnitOfWork();
    app.UseIdentityServer();
    app.UseAuthorization();
    app.UseSwagger();
    app.UseAbpSwaggerUI(options =>
    {
        options.SwaggerEndpoint("/swagger/v1/swagger.json", "NEXTjeugd API");
    });
    app.UseAuditing();
    app.UseAbpSerilogEnrichers();
    app.UseConfiguredEndpoints();
    app.UseWebDav(configuration);
}

I am only getting entries about Volo.Abp.Identity.IdentitySecurityLog which are created, but not changes. Why and how to accomplish that?

Kind regards, Tako Verkroost

ABP Framework version: v5.3.0 UI type: Blazor DB provider: EF Core Exception message and stack trace: Steps to reproduce the issue:"

Question

Hello,

I am getting an error when I click on "Set Password". The same for "Two factor" Please can somebody tell me what's going on? I have also attached a screenshot

Kind regards, Tako Verkroost

  • ABP Framework version: v5.3.0
  • UI type: Blazor
  • DB provider: EF Core
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
  • Within tenant go to Identity Management
  • Select an user
  • Click "Set Password"
  • Click "Two factor"
Answer

Hi,

This could be the problem.Thanks a lot!

Question

Hi everbody,

I figured out that some characters are swallowed or disappeared if you type something in a textedit field box. There is some delay especially in a datepicker. What's going on?

Any help is appreciated.

Kind regards, Tako Verkroost

  • ABP Framework version: v4.4.4
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

Answer

Hi everbody,

I didn't get response yet. Is there an any solution?

Regards, Tako Verkroost

Answer

Hi,

This what I got. As you can see, there is no logo set at all. No href attribute. What is wrong?

Hi everbody,

I figure out that the mouse onhover effect isn't workling. I set Hoverable="true". Tooltip shows: Adds a hover effect on when mousing over rows.

<DataGrid TItem="JeugdigeDto" Data="JeugdigeList" ReadData="OnDataGridReadAsync" TotalItems="TotalCount" ShowPager="true" Responsive="true" PageSize="PageSize" @bind-SelectedRow="@EditJeugdige" Hoverable="true">

Why isn't working? Can somebody help me out?

Kind regards, Tako Verkroost

  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
Question

Hi everybody,

I checked the documentation howto add a custom logo, but that didn't work. I changed the LogoUrl method to set logo: public class NEXTjeugdBrandingProvider : DefaultBrandingProvider { public override string AppName => "NEXTjeugd"; public override string LogoUrl => "/images/logo/Jel.png"; } Why isn't working? Can somebody help me out?

Kind regards, Tako Verkroost

  • ABP Framework version: v4.4.3
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"
Question

Hi

I tried to use AbpHelper GUI but it crashing all the time without an error. Only what I see is a splash screen. What is going on? Can somebody help me out?

Kind regards, Tako Verkroost

  • ABP Framework version: v4.4.2
  • UI type: Blazor
  • DB provider: EF Core
  • Tiered (MVC) or Identity Server Separated (Angular): no
  • Exception message and stack trace:
  • Steps to reproduce the issue:"

hi

This feature is planned and has not yet been implemented.

Hi, Do you have an alternative for that?

Showing 1 to 10 of 14 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11