typo3表格9.5.11如何向元素添加我自己的类?

时间:2020-04-01 11:27:31

标签: typo3 typo3-9.x

我正在使用表单(9.5.11)来制作相对简单的表单,只需要一个字段集位于HTML结构中,并在其上添加一个自定义类,其值是:Bootstrap的col-sm-6。

这是.yaml的一部分:

renderables:
  -
    type: Fieldset
    identifier: fieldset-1
    label: ''
    renderables:
      -
        defaultValue: ''
        type: Text
        identifier: text-1
        label: ''
        properties:
          fluidAdditionalAttributes:
            placeholder: 'First Name'
            required: required

如何将一个类添加到字段集中?

感谢您指出正确的方向

1 个答案:

答案 0 :(得分:0)

答案是:

properties:
  elementClassAttribute: 'col-sm-6'

在字段集上:

renderables:
  -
    type: Fieldset
    identifier: fieldset-1
    label: ''
    properties:
      elementClassAttribute: 'col-sm-6'
    renderables:
      -
        defaultValue: ''
        type: Text
        identifier: text-1
        label: ''
        properties:
          fluidAdditionalAttributes:
            placeholder: 'First Name'
            required: required