【问题标题】:Override inner cols with inner rows Smarty columns用内部行覆盖内部列 Smarty 列
【发布时间】:2013-09-05 19:18:46
【问题描述】:

我的表格中有 3 列,并且我的信息显示正确。但是,信息在 smarty 模板中水平显示。
1 2 3
4 5 6
7 8 9

我怎样才能垂直显示呢?

像这样:
1 4 7
2 5 8
3 6 9

我需要的是一个解决方案,类似于以下内容: {html_table inner=rows cols=3 loop=$array}

{* Categories *}
{if !empty($categs)}
{if !empty($category.ID)}
<h3>{l}Books{/l}</h3>
{/if}
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
{foreach from=$categs item=cat name=categs}
{if ($smarty.foreach.categs.iteration mod $cats_per_col eq 1 and $cats_per_col gt 1) or    $smarty.foreach.categs.first}<td>{/if}
<h2 {if !empty($category.ID)}class="blocktext"{/if}><a href="{if !empty($cat.URL)}    {$cat.URL}{else}{$smarty.const.DOC_ROOT}/{$cat.CACHE_URL|escape}{/if}" {if $cat.NEW_WINDOW eq 1}target="blank"{/if}  title="{$cat.TITLE|escape}" class="catHomeMain">{$cat.TITLE|escape} </a>{if $smarty.const.CATS_COUNT}{if !empty($cat.URL)}{else} <span class="catHomeCount">({$cat.COUNT})</span>{/if}{/if}</h2>
{* Display subcategories *}
{if !empty($cat.SUBCATS)}
{foreach from=$cat.SUBCATS item=scat name=scategs key=key}
{capture name="column"}{math equation="x % 3" x=$key}{/capture}
{if $smarty.capture.column == "0"}
<table border="0" cellpadding="0" cellspacing="0">
<tr>
    <td width="177px">
<ul class="navcontainer"><li>
    <a href="{if !empty($scat.URL)}{$scat.URL}{else}   {$smarty.const.DOC_ROOT}/{$scat.CACHE_URL|escape}{/if}" {if $scat.NEW_WINDOW eq 1}target="blank"{/if}  title="{$scat.TITLE|escape}" class="catHomeSub">{$scat.TITLE|escape}</a></li></ul>
            </td>
{elseif  $smarty.capture.column == "1"}
    <td width="177px">
<ul class="navcontainer"><li>
<a href="{if !empty($scat.URL)}{$scat.URL}{else}  {$smarty.const.DOC_ROOT}/{$scat.CACHE_URL|escape}{/if}" {if $scat.NEW_WINDOW eq 1}target="blank"{/if}  title="{$scat.TITLE|escape}" class="catHomeSub">{$scat.TITLE|escape}</a>
</li></ul>
    </td>
{elseif $smarty.capture.column == "2"}
    <td width="177px">
<ul class="navcontainer"><li>
<a href="{if !empty($scat.URL)}{$scat.URL}{else}  {$smarty.const.DOC_ROOT}/{$scat.CACHE_URL|escape}{/if}" {if $scat.NEW_WINDOW eq 1}target="blank"{/if}  title="{$scat.TITLE|escape}" class="catHomeSub">{$scat.TITLE|escape}</a>
</li></ul>
    </td>
</tr>
</table>
{/if}
{/foreach}

{if $smarty.capture.column != 2}
<!-- Close the table! -->
</tr></table>
{/if}
{/if}
{if ($smarty.foreach.categs.iteration mod $cats_per_col eq 0 and $cats_per_col gt 1) or $smarty.foreach.categs.last}</td>{/if}
{/foreach}
</tr>
</table>
<div class="break" style="height:20px;"></div>
{/if}

【问题讨论】:

    标签: sorting foreach smarty rows


    【解决方案1】:

    这就是我所做的:

    首先我在 PHP 文件中创建了一个数组:

    $tpl->assign('old', array('item1','item3','item5','item2','item4','item6'));
    

    然后在 .TPL 文件中我重写了如下代码:

    {if $cat.TITLE == "Old Books"}
    
    <table> 
    
    <tr> 
    
    {section name=nr loop=$old} 
    
    <td style="width:177px;">
    
    <ul class="navcontainer"><li>
    
    <a href="{$smarty.const.DOC_ROOT}/{$old[nr]}/" title="{$old[nr]|replace:'_':' '|escape}" class="catHomeSub">{$old[nr]|replace:'_':' '|escape}</a></li></ul></td> 
    
    {if $smarty.section.nr.iteration % 3 == 0} 
    
    </tr> 
    
    <tr> 
    
    {/if} 
    
    {/section} 
    
    </tr> 
    
    </table>
    

    这将输出垂直“排序”的 3 列中的数据。

    item1 item3 item5
    item2 item4 item6

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2012-09-06
      • 2015-09-26
      • 2012-10-30
      • 1970-01-01
      • 1970-01-01
      • 2012-01-20
      • 2012-02-26
      • 2020-07-18
      相关资源
      最近更新 更多