我在索引页面上有几列我希望包含换行符。
<thead>
<tr>
<th><?= $this->Paginator->sort('name') ?></th>
<th><?= $this->Paginator->sort('temp', ['label' => 'Temperature (C)']) ?></th>
<th><?= $this->Paginator->sort('vol', ['label' => 'Volume (m^3)']) ?></th>
</tr>
</thead>
我希望列“单位”位于“单位名称”下方。基本上,我想用“ br ”标签替换单元前的空格。
理想情况下,这些“ ”项目应与以下内容类似:
<th>Temperature<br>(C)</th>
<th>Volume<br>(m^3)</th>
建议?
答案 0 :(得分:0)
这可以这样做:
<?= $this->Paginator->sort('temp', 'Temperature<br>(C)', ['escape' => false]) ?>
有关在排序链接中使用html的示例,请参阅the documentation。