Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function showNotification()
  2. {
  3. <?php
  4. $count_role_deals = Deals::model()->countTasks($role);
  5. echo CHtml::ajax(array(
  6. 'url'=>array('deals/ShowNotification','count_role_deals'=>$count_role_deals,'role'=>$role),
  7. 'type'=>'POST',
  8. 'success'=>"function(html){
  9. $('#count_role_deals').text(html);
  10. }"
  11. )
  12. );
  13. ?>
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement