Spinner not visible when page content extneds too far out of the viewport

It seems like the SfSpinner centers itself within the container in which it exists which is fine most of the time. However, there are instances where the spinner itself is not visible because the center of the container is scrolled out of the viewport. Is there a way to always have the spinner centered on the viewport rather than the container?


1 Reply

VJ Vinitha Jeyakumar Syncfusion Team August 25, 2022 06:24 AM UTC

Hi Darryl,

We want to let you know that you can use the spinner directly inside the target element where you want to show the spinner. And you can customize the position of the spinner by using the below CSS styles code.


Code snippet:

.e-spinner-pane .e-spinner-inner {
    padding-top: 200px;
    left: 300px;
}


Regards,
Vinitha

Loader.
Up arrow icon