gpt4 book ai didi

css - Contao 包装 Leff 和 Right 类 TL_DCA 字段

转载 作者:行者123 更新时间:2023-11-28 03:58:23 24 4
gpt4 key购买 nike

我在 Contao 中使用 TL_DCA 功能,我想将字段包装在左右容器中。

$GLOBALS['TL_DCA']['table_name'] = array
(
// Config
'config' => array
(
'dataContainer' => 'Table',
),

// List
'list' => array
(),

// Fields
'fields' => array
(
'field1' => array
(
'label' => array('Suchname', 'Suchname'),
'exclude' => true,
'inputType' => 'text'
),
'field2' => array
(
'label' => array('Firma', 'Firma'),
'exclude' => true,
'inputType' => 'text'
),
'field3' => array
(
'label' => array('Name', 'Name'),
'exclude' => true,
'inputType' => 'text',
'eval' => array('mandatory' => true)
),
'field4' => array
(
'label' => array('Vorname', 'Vorname'),
'exclude' => true,
'inputType' => 'text'
),
)
)

在左类中包装 Field 和 Filed 2,在右类中包装 Field 3 和 Field 4。所以请在这里帮忙。

提前致谢..!!!

最佳答案

可以为字段指定特定的 css 类:

'eval' => array('tl_class'=>'w50'),

w50代表宽度=50%

例如:

   'field1' => array
(
'label' => array('Suchname', 'Suchname'),
'exclude' => true,
'inputType' => 'text',
'eval' => array('tl_class'=>'w50'),
),
'field2' => array
(
'label' => array('Firma', 'Firma'),
'exclude' => true,
'inputType' => 'text'
'eval' => array('tl_class'=>'w50'),
),

关于css - Contao 包装 Leff 和 Right 类 TL_DCA 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43338461/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com