Ich habe das Produktraster im Magento 2-Administrationsformular über diesen Link hinzugefügt: Produktraster . Aber jetzt erstelle ich ein Administrationsformular mit der UI-Komponente und kann das Produktraster nicht mit der UI-Komponente ändern. Bitte hilf mir.
view / adminhtml / layout / productlabel_productlabel_edit.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<body>
<referenceContainer name="content">
<uiComponent name="productlabel_form"/>
</referenceContainer>
</body>
</page>
view / adminhtml / ui_component / productlabel_form.xml
<fieldset name="assign_products">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="label" xsi:type="string" translate="true">Products in Category</item>
<item name="collapsible" xsi:type="boolean">true</item>
<item name="sortOrder" xsi:type="number">40</item>
</item>
</argument>
<container name="assign_products_container" >
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="sortOrder" xsi:type="number">160</item>
</item>
</argument>
<htmlContent name="html_content">
<argument name="block" xsi:type="object">Magento\Catalog\Block\Adminhtml\Category\AssignProducts</argument>
</htmlContent>
</container>
</fieldset>
Bitte helfen Sie!
Antworten:
Bitte prüfen Sie das.
Schritt 1: Fügen Sie den folgenden Code in Ihr UI-Formular ein
Schritt 2: Erstellen
AssignProducts.php
inNamespace\Module\Block\Adminhtml\Products\Edit
Schritt 3: Erstellen Sie Product.php in
Namespace\Module\Block\Adminhtml\Products\Edit\Tab\
Schritt 4: Erstellen
assign_products.phtml
inNamespace\Module\view\adminhtml\templates\products\
Schritt 4: Kopieren
vendor/magento/module-catalog/view/adminhtml/web/catalog/category/assign-products.js
nachNamespace/Module/view/adminhtml/web/products/
Schritt 5: Erstellen
Grid.php
Namespace/Module/Controller/Adminhtml/Products
Schritt 6: Erstellen
Product.php Namespace/Module/Controller/Adminhtml/Products
quelle
Call to a member function getProductsReadonly() on null in Product.php
du mir helfen?