Examples¶
Simple text area¶
[
'columns' => [
'text_4' => [
'exclude' => 1,
'label' => 'text_4',
'description' => 'cols=20, rows=2',
'config' => [
'type' => 'text',
'cols' => 20,
'rows' => 2,
],
],
],
]
Copied!
Rich text editor field¶
[
'columns' => [
'rte_1' => [
'exclude' => 1,
'label' => 'rte_1 description',
'description' => 'field description',
'config' => [
'type' => 'text',
'enableRichtext' => true,
],
],
],
]
Copied!