web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Pages / Show/Hide Load Spinner...
Power Pages
Answered

Show/Hide Load Spinner on Basic Form popup dialog

(0) ShareShare
ReportReport
Posted on by 230

Hi everyone,

How do you create a load spinner in Power Pages? How do you display and hide a load spinner on a Basic Form Popup Dialog?

Can you send me some examples in JS, please?

David_Pezzoli_0-1715357046297.png

 

The Load spinner display during the update of the field value (on change) or during send click button:

spinner-css3-animations.jpg

Many Thanks!

Categories:
I have the same question (0)
  • Verified answer
    EmadBeshai Profile Picture
    806 Moderator on at

    Hi @David_Pezzoli ,

     

    To create spinner you need to add the below HTML and CSS

    
    .loader {
     border: 16px solid #f3f3f3;
     border-radius: 50%;
     border-top: 16px solid #3498db;
     width: 120px;
     height: 120px;
     -webkit-animation: spin 2s linear infinite; /* Safari */
     animation: spin 2s linear infinite;
    }
    
    /* Safari */
    @-webkit-keyframes spin {
     0% { -webkit-transform: rotate(0deg); }
     100% { -webkit-transform: rotate(360deg); }
    }
    
    @keyframes spin {
     0% { transform: rotate(0deg); }
     100% { transform: rotate(360deg); }
    }
    
    
    
    
    
    <div class="loader"></div>

     

    To show and hide this spinner you need to use the below code

    //Hide
    $('.loader').style="display:none"
    //Show
    $('.loader').style="display:auto"

     

    If this post helps you with your problem, please mark this answer as Accepted Solution.

    If you like my response, please give it a Thumbs Up. 

     

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Season of Sharing Community Challenge Launch!

Jump in, show your community spirit, and win prizes!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the April Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Pages

#1
11manish Profile Picture

11manish 34

#2
Valantis Profile Picture

Valantis 30

#3
omkarsupreme Profile Picture

omkarsupreme 23

Last 30 days Overall leaderboard