Magento 2:在管理区域中显示多个网格

时间:2016-08-11 12:54:15

标签: grid magento2

我以网格格式显示了一个自定义表格。现在,我想以网格格式显示另一个自定义表格(在不同的菜单下)。但我有点困惑,如何在di.xml文件中添加代码。

这是我为第一个网格创建的di.xml:

app / code / Ved / Mymodule / etc / di.xml:

<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
    <virtualType name="Ved\Mymodule\Model\ResourceModel\News\Collection" type="Magento\Framework\View\Element\UiComponent\DataProvider\SearchResult">
        <arguments>
            <argument name="mainTable" xsi:type="string">ved_zipcodes</argument> <!-- here ved_zipcodes this is the db table name -->
            <argument name="resourceModel" xsi:type="string">Ved\Mymodule\Model\ResourceModel\News</argument> <!-- Path -->
        </arguments>
    </virtualType>
    <type name="Magento\Framework\View\Element\UiComponent\DataProvider\CollectionFactory">
        <arguments>
            <argument name="collections" xsi:type="array">
                <!-- Here name value, we will use in mymodule_my_grid.xml layout file -->
                <item name="mymodule_news_grid_data_source" xsi:type="string">Ved\Mymodule\Model\ResourceModel\News\Collection</item> <!-- Collection path -->
            </argument>
        </arguments>
    </type>
</config>


如何更新我的di.xml以在admin中显示第二个网格?&lt;&gt; br

任何帮助都将受到高度赞赏。谢谢。

0 个答案:

没有答案