【问题标题】:Add input field in Magento Admin Panel在 Magento 管理面板中添加输入字段
【发布时间】:2015-11-17 06:57:03
【问题描述】:

如何在 Magento 管理面板的屏幕截图下方添加 <input type ="text"/> 字段以接收值?

谢谢

【问题讨论】:

    标签: magento admin


    【解决方案1】:

    假设您要添加“标题字段”。

    您必须在此文件上添加以下代码,即Am/Blog/Block/Adminhtml/Blog/Edit/Tab/Form.php

      $fieldset->addField('title', 'text', array(
          'label'     => Mage::helper('blog')->__('Title'),
          'class'     => 'required-entry',
          'required'  => true,
          'name'      => 'title',
      ));
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2015-10-24
      • 1970-01-01
      • 2015-03-30
      • 1970-01-01
      相关资源
      最近更新 更多