2011-12-09 47 views
1

我有這生成CListView代碼與一些div,我不需要。 我希望不要荒謬,在zii/widgets上硬編碼類。

我已經看到了這一點:

/** 
    * @var string the template to be used to control the layout of various components in the list view. 
    * These tokens are recognized: {summary}, {sorter}, {items} and {pager}. They will be replaced with the 
    * summary text, the sort links, the data item list, and the pager. 
    */ 
    public $template="{summary}\n{sorter}\n{items}\n{pager}"; 

看來我可以訪問$模板,並用它做什麼 - 任何人都可以請告訴我,怎樣才能去除總結分揀機的物品或尋呼機?

請指教。

+0

你能告訴我們哪些div完全不需要嗎? – Chux

回答

0

只需刪除您不想呈現的任何{placeholder}。要刪除例如分揀機:

$this->widget('zii.widgets.CListView', array( 
     // set up CListView like you want, and then: 
     'template' => "{summary}\n{items}\n{pager}", 
)); 
+0

我試着讓'template'=>「」(裏面沒有任何東西) - 但是默認情況下,{items}和{summary}會得到。 :( – MEM