<?php
Yii::app()->clientScript->registerScript('loaderScript', '
$("#loader")
.hide()
.ajaxStart(function() {
$(this).show();
})
.ajaxStop(function() {
$(this).hide();
});', CClientScript::POS_END);
?>
<?php echo CHtml::image('images/ajax-loader.gif', '', array('id' => 'loader', 'style' => 'margin-left:15px;'));?>
No comments:
Post a Comment