Magento:用于模块配置的更大文本输入
Magento : Bigger Text Input For Module Configuration
我正在为 Magento 1.9 创建自定义模块。我需要在配置中有更大的文本输入字段。普通字段高一行,我需要多行高
是否缺少我缺少的默认输入类型?
我需要创建自定义输入字段吗?
谢谢
在 magento 自定义扩展配置中,您可以使用此代码添加文本区域。
<yourfieldid translate="label comment">
<label>Title</label>
<frontend_type>textarea</frontend_type>
<sort_order>70</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</yourfieldid>
我正在为 Magento 1.9 创建自定义模块。我需要在配置中有更大的文本输入字段。普通字段高一行,我需要多行高
是否缺少我缺少的默认输入类型?
我需要创建自定义输入字段吗?
谢谢
在 magento 自定义扩展配置中,您可以使用此代码添加文本区域。
<yourfieldid translate="label comment">
<label>Title</label>
<frontend_type>textarea</frontend_type>
<sort_order>70</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</yourfieldid>