Hide display of component loading progress in Blazor
Hide display of component loading progress in Blazor
Hi
since version 2022.1.5 there is new feature: "2. We added the display of component loading progress bar for Blazor Wasm."
Is there any way to disable that new feature,since it was added I see then progress circle on top,it hides for 1-2 seconds then I see it on middle,with previous verions is was displayed only in center.
you can reproducer this behavior with Blazor sample "Showing a Viewer without Toolbar"
thanks
since version 2022.1.5 there is new feature: "2. We added the display of component loading progress bar for Blazor Wasm."
Is there any way to disable that new feature,since it was added I see then progress circle on top,it hides for 1-2 seconds then I see it on middle,with previous verions is was displayed only in center.
you can reproducer this behavior with Blazor sample "Showing a Viewer without Toolbar"
thanks
-
- Posts: 897
- Joined: Tue Sep 07, 2021 10:11 am
Re: Hide display of component loading progress in Blazor
Hello,
The progress circle is displayed in different positions because the viewer does not know the height of the report at the beginning.
You can set the height for the viewer from the code:
Thank you.
The progress circle is displayed in different positions because the viewer does not know the height of the report at the beginning.
You can set the height for the viewer from the code:
Code: Select all
<StiBlazorViewer Report="@report" Options="@options" Height="1000px" />
Re: Hide display of component loading progress in Blazor
Hi
setting Height="1000px" doesn't' show the circle in first time in the same position as is shown on second time(you can see it in sample "Showing a Viewer without Toolbar").
on our app it is shown about 5cm difference on a pc screen.
for us first time shown disable is a good solution
thanks
setting Height="1000px" doesn't' show the circle in first time in the same position as is shown on second time(you can see it in sample "Showing a Viewer without Toolbar").
on our app it is shown about 5cm difference on a pc screen.
for us first time shown disable is a good solution
thanks
-
- Posts: 897
- Joined: Tue Sep 07, 2021 10:11 am
Re: Hide display of component loading progress in Blazor
Hello,
try to use the following code in index.html :
Thank you.
try to use the following code in index.html :
Code: Select all
<style>
.sti-loader {
display: none !important;
}
</style>
Re: Hide display of component loading progress in Blazor
great
thanks!
thanks!
-
- Posts: 6832
- Joined: Tue Mar 20, 2018 5:34 am
Re: Hide display of component loading progress in Blazor
Hello,
You are welcome.
You are welcome.
Re: Hide display of component loading progress in Blazor
Hi,after update from 2022.4.5 to 2023.1.1 I'm not able to hide progress loading
thanks
thanks
-
- Posts: 897
- Joined: Tue Sep 07, 2021 10:11 am
Re: Hide display of component loading progress in Blazor
Hello,
Please try to use the following code in index.html :
Thank you.
Please try to use the following code in index.html :
Code: Select all
<style>
.sti-component-loader {
display: none !important;
}
</style>
Re: Hide display of component loading progress in Blazor
it works.thanks!
-
- Posts: 897
- Joined: Tue Sep 07, 2021 10:11 am
Re: Hide display of component loading progress in Blazor
Hello,
You are Welcome!
You are Welcome!