Activities of "maliming"

hi

Can you explain it in detail? I don't quite understand what you mean.

Thanks. I will check it asap.

It is working fine on popup pages.

This is because you are calling API, and the page cannot display such a style.

You can check the Page-Alerts

https://docs.abp.io/en/abp/latest/UI/AspNetCore/Page-Alerts

Thanks. Can you share the LeptonxDemoApp project? liming.ma@volosoft.com

I don't know yet

hi

The framework can only handle pages with an object of the return type.

https://docs.abp.io/en/abp/latest/Exception-Handling

hi

@using Microsoft.Extensions.Options
@using Microsoft.Extensions.Localization
@using global::Localization.Resources.AbpUi
@using Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.ApplicationLayout
@using Volo.Abp.AspNetCore.Components.Web.Theming.Routing
@using Volo.Abp.DependencyInjection
@inject IOptions<AbpRouterOptions> RouterOptions
@inject IStringLocalizer<AbpUiResource> UiLocalizer
@inherits Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.App
@attribute [Dependency(ReplaceServices = true)]
@attribute [ExposeServices(typeof(Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.App))]
<CascadingAuthenticationState>
    <Router AppAssembly="RouterOptions.Value.AppAssembly"
            AdditionalAssemblies="RouterOptions.Value.AdditionalAssemblies">
        <Found Context="routeData">
            <AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(DefaultLayout)">
                <NotAuthorized>
                    @if (context.User?.Identity?.IsAuthenticated == false)
                    {
                        <RedirectToLogin/>
                    }
                    else
                    {
                        @* Temporary removed since it makes a flicker effect on page refresh *@
                        @* <ErrorView
                            Title="@UiLocalizer["403Message"]"
                            HttpStatusCode="403"
                            Message="@UiLocalizer["403MessageDetail"]"/> *@
                    }
                </NotAuthorized>
            </AuthorizeRouteView>
        </Found>
        <NotFound>
            <LayoutView Layout="@typeof(DefaultLayout)">
                <Volo.Abp.AspNetCore.Components.Web.LeptonTheme.Components.ErrorView
                    Title="@UiLocalizer["404Message"]"
                    HttpStatusCode="404"
                    Message="@UiLocalizer["404MessageDetail"]"/>

                <h1>test222</h1>
            </LayoutView>
        </NotFound>
    </Router>
</CascadingAuthenticationState>

hi

You can use the high version of the package in package.json, and we will also upgrade it in the new version.

Can you share a simple project? liming.ma@volosoft.com

hi

Can you try passing true to InsertAsync method?

InsertAsync(workordersubTask, true);

Showing 6391 to 6400 of 10676 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 16, 2025, 10:35