Open Closed

PageProgress tab #6668


User avatar
0
Spospisil created
  • ABP Framework version: v7.3.0
  • UI Type: Blazor WASM
  • Database System: EF Core (PostgreSQL)
  • Tiered (for MVC) or Auth Server Separated (for Angular): yes

I have been unable to get the page progress indicator to show in my Blazor WASM application. This link (https://docs.abp.io/en/abp/latest/UI/Blazor/Page-Progress) says that it's built in by default but I see no indicator that shows when going from page to page even in the ABP module UI's themselves.

Thanks.


4 Answer(s)
  • User Avatar
    0
    Anjali_Musmade created
    Support Team Support Team Member

    Hello ,

    Can you please check if it is helpful for you https://github.com/Megabit/Blazorise/pull/1623/commits/75a5c3c0629b5aa614bc742498e81fa35a484a50

    Thank you.

  • User Avatar
    0
    Spospisil created

    I'm a little confused. Are you saying I have to manually show/hide the indicator on every page I want this indicator? According to ABP's documentation I shouldn't have to.

    "By default you don't need to do anything to show the progress indicator, as all the work is done automatically by the ABP Framework internals. This means that all calls to the ABP backend (through your HTTP API) will activate page progress and show the loading indicator."

    <br>

  • User Avatar
    0
    Spospisil created

    I need an update on this please

  • User Avatar
    0
    liangshiwei created
    Support Team Fullstack Developer

    Hi,

    I can confirm this issue, I'm not sure why the leptonx theme team didn't add Progress component to the layout, I will ask them. your ticket was refunded.

    You can try adding the following code to the Wasm Module class:

    Configure<AbpLayoutHookOptions>(options =>
    {
        options.Add(LayoutHooks.Body.Last, typeof(UiPageProgress), StandardLayouts.Application);
    });
    
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11