在管理面板中添加一些 HTML 表单 magento
在 app/code/local/namspace/module/Block/Adminhtml/module/Edit/Tab/Form.php 中,我们基本上添加了所有字段。无论如何,是否可以向此表单添加任何 HTML,例如一些用于填写表单的表单说明。
我在 app/code/local/namspace/module/Block/ 下有这个布局
Block
|
|____Adminhtml
|
|____ Module
|
|__Edit
| |__Form.php
| |__Tabs.php
| |
| |__Tab
| |___Form.php
|
|__Edit.php
谢谢
In app/code/local/namspace/module/Block/Adminhtml/module/Edit/Tab/Form.php
we basically add all the fields. Is there anyway to add any HTML to this form e.g. some form instructions for filling the form.
I have this layout under app/code/local/namspace/module/Block/
Block
|
|____Adminhtml
|
|____ Module
|
|__Edit
| |__Form.php
| |__Tabs.php
| |
| |__Tab
| |___Form.php
|
|__Edit.php
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否真的理解这个问题。您是否想在管理中添加新字段?如果是这样,可以使用 XML 来完成。
http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin /xml_struct_for_admin_configurations#source_model
“注释对于提供额外的描述或信息很有用。如果您想使用 HTML,请将其文本包含在 CDATA 标记中,任何 HTML 都是允许的,但最常见的用途是使用“创建突出显示跨度通知”或“警告”类。
如果我的回答离题很远,请用更多信息更新您的问题,因为我仍然不确定您要做什么。
I'm not sure I really understand the question. Are you trying to add new fields into the admin? If so, that can be done with XML.
http://www.magentocommerce.com/wiki/5_-_modules_and_development/admin/xml_structure_for_admin_configurations#source_model
"comment is useful for providing extra descriptions or information. Wrap it’s text in a CDATA tag if you want to use HTML, any HTML is allowed but the most common use is to create highlight spans with a “notice” or “warning” class."
If my response is way off, please update your question with some more information, as I'm still not real sure what you are trying to do.