Magento 2 Add a note under a form field using ui components

Magento 2 Add a note under a form field using ui components

  • In php code:
$fieldset->addField(
    'url',
    'text',
    [
        'name' => 'url',
        'label' => __('URL'),
        'title' => __('URL'),
        'required' => false,
        'note' => 'Can be an absolute or relative path.'
    ]
);
  • In Ui Form:

example:


    
        
            Sku
            true
            text
            input
            product_information
            sku
            true
            Auto Created
            
                true
            
        
    

Magento 2 Add a note under a form field using ui components_第1张图片
Tony's blog image

More Magento 2 Document, Please View https://www.abmbio.xin/category/6


More Information, Please Subscribe My Wechat Public Platform Or View My Blog : https://www.abmbio.xin

20180117_81914.jpg

你可能感兴趣的:(Magento 2 Add a note under a form field using ui components)