Comparing
#1 with
#11
Tags
AJAX
Content
[...]
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.
```php
array(
'ajax' =>
You should put the following code in your view file:
```php
<?php
echo CHtml::form();
echo CHtml::ajaxButton (
'DoAjaxRequest', //label
'', // url for request
array
(
'beforeSend' => 'function(){
$("#myDiv").addClass("loading");
}',
'complete' => 'function(){
$("#myDiv").removeClass("loading");
}',
)
)
;
echo CHtml::endForm();?>
```[...]
}
~~~
### Links
[Russian Version](http://dbhelp.ru/how-to-add-ajax-preloader/page/)