1

嗨,我正在构建一个自定义模块,您可以在其中选择从哪个存储中提取数据的部分,我可以通过下拉列表(标准)显示它,但是如何将其更改为多选框,以便您可以选择超过 1 个商店来获取数据,与订单状态相同,它目前是下拉列表,但我希望能够选择超过 1 个状态。

任何帮助表示赞赏。

4

1 回答 1

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

于 2012-11-06T11:08:53.487 回答