2013-11-28 84 views
0

我有一個擴展tx_news中的widget.paginate位置的問題,我正在TYPO3訴6.1 FLUID/EXTBASE工作。TYPO3 tx_news,與widget.paginate的位置問題

我的問題是它默認顯示widget.paginate,在我的列表中顯示UL標籤的Templates/News/list.html中。我希望它在UL標籤之外,我嘗試過移動它,但隨後它會對我的佈局做出一些重大更改,或根本不起作用。

看到頁面的底部 - enter link description here

我怎樣才能顯示UL之外,它後PAGINATE鏈接/小工具?

我的模板/新聞/ list.html代碼

{namespace n=Tx_News_ViewHelpers} 
<f:layout name="General" /> 
<!-- 
    ===================== 
    Templates/News/List.html 
--> 

<f:section name="content"> 
    <f:if condition="{news}"> 
    <f:then> 
     <div class="news-list-view"> 
     <ul class="cbp_tmtimeline {newsItem.type}{f:if(condition: newsItem.istopnews, then: ' topnews')}"> 
     <f:if condition="{settings.hidePagination}"> 
      <f:then> 
      <f:for each="{news}" as="newsItem"> 
       <f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" /> 
      </f:for> 
      </f:then> 
      <f:else> 
      <n:widget.paginate objects="{news}" as="paginatedNews" configuration="{settings.list.paginate}"> 
       <f:for each="{paginatedNews}" as="newsItem"> 
       <f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" /> 
       </f:for> 
      </n:widget.paginate> 
      </f:else> 
     </f:if> 
     </ul> 
     </div> 
    </f:then> 
    <f:else> 
     <div class="no-news-found"> 
     <f:translate key="list_nonewsfound" /> 
     </div> 
    </f:else> 
    </f:if> 
</f:section> 

回答

1

您可以覆蓋默認分頁模板,定義自己的模板

添加到您的TS模板:

plugin.tx_news.settings.list.paginate.templatePath = YourNewTemplatePath.html

要了解默認模板如何工作,請查看此Default Template以供參考,並相應地修改您的視圖。

如果你想編輯默認新聞列表,更改默認的消息路徑並在該文件寫你的液體模板:

plugin.tx_news.view.templateRootPath = YourNewTemplateNews.html

小部件之前關閉的標籤。當然,你必須在你的CSS中做一些改變才能得到你想要的。

</ul> 
      <f:else> 
      <n:widget.paginate>....... 
+0

嗨RaD0,paginate的默認模板,工作正常,它只是放置它,這就是問題。所以它的n:widget.paginate多數民衆贊成多數民衆贊成在我想在我的網頁上放置/呼叫另一​​個地方。 –

+0

如果您不是新聞列表的默認模板,那麼編寫您自己的模板是一個好主意,而不是默認情況下更改Extension所附帶的模板。我編輯了我的答案。 – dora

0

嗨,我解決它在模板/新聞/ list.html代碼

與此代碼。

{namespace n=Tx_News_ViewHelpers} 
<f:layout name="General" /> 
<!-- 
    ===================== 
    Templates/News/List.html 
--> 

<f:section name="content"> 
    <f:if condition="{news}"> 
    <f:then> 
     <f:if condition="{settings.hidePagination}"> 
      <f:then> 
      <f:for each="{news}" as="newsItem"> 
       <f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" /> 
      </f:for> 
      </f:then> 
      <f:else> 
      <n:widget.paginate objects="{news}" as="paginatedNews" configuration="{settings.list.paginate}">  
      <div class="news-list-view"> 
      <ul class="cbp_tmtimeline {newsItem.type}{f:if(condition: newsItem.istopnews, then: ' topnews')}">    
       <f:for each="{paginatedNews}" as="newsItem"> 
       <f:render partial="List/Item" arguments="{newsItem: newsItem, settings:settings}" /> 
       </f:for>   
      </ul> 
      </div> 
      </n:widget.paginate> 
      </f:else> 
     </f:if> 
    </f:then> 
    <f:else> 
     <div class="no-news-found"> 
     <f:translate key="list_nonewsfound" /> 
     </div> 
    </f:else> 
    </f:if> 
</f:section>