您好我正在构建一个自定义模块,并且有一个部分可以选择从哪个商店中提取数据,我可以通过下拉列表(标准)显示它,但是如何将其更改为多选框,以便您可以选择多个商店来获取数据,与订单状态相同,它当前下拉,但我希望能够选择多于1个状态。
感谢任何帮助。
答案 0 :(得分:0)
我猜您的意思是希望能够使用XML配置将其添加到Magneto管理系统中。
您需要在字段定义中添加类似的内容
<select_store translate="label">
<label>Pick stores here bla</label>
<frontend_type>multiselect</frontend_type>
<sort_order>1</sort_order>
<source_model>adminhtml/system_config_source_store</source_model>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</select_store>
这应该添加多选输入,并为您收集所有商店。有关Magento配置的帮助,请参阅此处:http://alanstorm.com/custom_magento_system_configuration