SEARCH

テーブル

  • {assign_topics_ext var=group01 id='01' ext_type='group' ext_columns=$topicsData.ext_columns.straight}
  • {foreach from=$group01 item=cols name=ext_item}
  •    {assign_topics_ext var=table11 id='11' ext_type='table' ext_columns=$cols}
  •  
  •    {$table11}
  •  
  • {/foreach}

の数字は、親に指定している拡張項目のIDです。
の数字は、拡張項目のIDです。
ext_type  の値(青い部分)を table と指定してください。
 

※HTMLにクラス等を加えたい場合は、下記のソースを使用してください。こちらでも表示可能です。

<table cellpadding="6" cellspacing="1">
 {foreach from=$table11_2.show_value item=row name=table11}
 <tr>
  {foreach from=$row item=cell name=ext_cell}
   {if $cell.tag == 'th'}<th>{else}<td>{/if}
   {if $cell.lock}{$cell.constant}{else}{$cell.value}{/if}
  </{$cell.tag}>
  {/foreach}
 </tr>
 {/foreach}
</table>

SEARCH