Làm cách nào tôi có thể thêm một văn bản nhỏ dưới một trường trong Magento 2 bằng các thành phần ui.
Sử dụng Magento\Framework\Data\Form
tôi có thể làm điều này:
/** @var \Magento\Framework\Data\Form $form */
$form = $this->formFactory->create();
$fieldset = $form->addFieldset(
'base_fieldset',
[
'legend' => __('Some legend here'),
'class' => 'fieldset-wide'
]
);
$fieldset->addField(
'name',
'text',
[
'name' => 'name',
'label' => __('Name'),
'title' => __('Name'),
'note' => __('Some note here')
]
);
Mã ở trên sẽ tạo ra điều này (chú ý văn bản dưới trường).
Làm thế nào tôi có thể đạt được điều tương tự bằng cách sử dụng mẫu ui-thành phần?
Tôi có mẫu được định nghĩa như thế này:
<field name="name">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="dataType" xsi:type="string">text</item>
<item name="label" xsi:type="string" translate="true">Name</item>
<item name="formElement" xsi:type="string">input</item>
<item name="source" xsi:type="string">[entity]</item>
<item name="sortOrder" xsi:type="number">10</item>
<item name="dataScope" xsi:type="string">name</item>
<item name="validation" xsi:type="array">
<item name="required-entry" xsi:type="boolean">true</item>
</item>
</item>
</argument>
</field>
Tôi đã thử thêm <item name="note" xsi:type="string" translate="true">Some note here</item>
nhưng, đoán xem?
translate="true"
chỉ để làm cho tập lệnh collector cụm từ có thể dịch được cũng chọn này.