With yii you're able to create ajax requests and updates easily. But most times you always want to show a loading indicatior to your user.

Here's a simple (and good looking) solution for yii. Basically we'll fade out all elements within a div to 80% opacity, while displaying a loading indicator in the background.

The advantage of this solution is, that you don't have to add extra markup to your page.

When performing the ajax request, add the .loading class to your, usually a div, element. And remove it when the request is complete.

array(
     'ajax' => array(
          'beforeSend' => 'function(){
                      $("#myDiv").addClass("loading");
                  }',
          'complete' => 'function(){
                      $("#myDiv").removeClass("loading");
                  }',
          )
 )

The very slim CSS part of this recepie:

div.loading {
    background-color: #eee;
    background-image: url('loading.gif');
    background-position:  center center;
    background-repeat: no-repeat;
    opacity: 1;
}
div.loading * {
    opacity: .8;
}


Published:09/04/2009
View The Entire Article