2016-11-25 65 views

回答

0

您可以在_preparelayout功能在您塊文件中設置收集如下代碼

保護功能_prepareLayout(){

parent::_prepareLayout(); 
    $toolbar = $this->getLayout()->createBlock('page/html_pager'); 
    if ($toolbar) { 

     $toolbar->setAvailableLimit(array(10=>10,20=>20,'all'=>'All')); 
     $toolbar->setCollection($this->getCollection()); 
     $this->setChild('toolbar', $toolbar); 

    } 
    return $this; 
} 

public function getToolbarHtml() 
{ 
    return $this->getChildHtml('toolbar'); 
} 

$this->getToolbarHtml(); 
在PHTML文件調用
相關問題