HCE Project DC service web UI  0.2
Hierarchical Cluster Engine DC service web UI
 All Classes Namespaces Files Functions Variables Pages
TbListView.php
Go to the documentation of this file.
1 <?php
10 Yii::import('zii.widgets.CListView');
11 
17 class TbListView extends CListView {
18 
22  public $pagerCssClass = 'pagination';
23 
28  public $pager = array('class' => 'booster.widgets.TbPager');
29 
34  public $cssFile = false;
35 
41  public function init() {
42 
43  parent::init();
44 
45  $booster = Booster::getBooster();
46  $popover = $booster->popoverSelector;
47  $tooltip = $booster->tooltipSelector;
48 
49  $afterAjaxUpdate = "js:function() {
50  jQuery('.popover').remove();
51  jQuery('{$popover}').popover();
52  jQuery('.tooltip').remove();
53  jQuery('{$tooltip}').tooltip();
54  }";
55 
56  if (!isset($this->afterAjaxUpdate)) {
57  $this->afterAjaxUpdate = $afterAjaxUpdate;
58  }
59  }
60 }