rte
拡張機能に問題があります。テーブルでは、フィールドを設定しtext area with rte
ました。BE TYPO3 で rte ビューを生成し、テキストをフォーマットするとすべて問題ありません。唯一の問題は、いくつかの段落がある場合です.BEには<p>
タグがありますが、HTMLコードのフロントエンドには<p>
タグが「存在しませんでした」.
私の TCA コードは次のようになります。
'description' => array(
'exclude' => 1,
'label' => 'LLL:EXT:fu_product_table/locallang_db.xml:tx_table_products.description',
'defaultExtras' => 'richtext[*]',
'config' => array(
'type' => 'text',
'cols' => '30',
'rows' => '5',
'wizards' => array(
'_PADDING' => 2,
'RTE' => array(
'notNewRecords' => 1,
'RTEonly' => 1,
'type' => 'script',
'title' => 'Full screen Rich Text Editing|Formatteret redigering i hele vinduet',
'icon' => 'wizard_rte2.gif',
'script' => 'wizard_rte.php',
),
),
)
),
そして、クラスでフィールドをレンダリングしようとしています:
'<td class="td-1">' . $this->getFieldContent('description') . '</td>';
なにか提案を?