Skip to content

Magento 2 – Admin grid filter should be single select

Magento 2.4 – Admin UI component grid filter should be single select but multi select is coming. XML Code <column name=”status” component=”Magento_Ui/js/grid/columns/select”> <argument name=”data” xsi:type=”array”> <item name=”options” xsi:type=”object”>VendorCustomModuleModelSourceStatus</item> <item name=”config” xsi:type=”array”> <item name=”filter” xsi:type=”string”>select</item> <item name=”dataType” xsi:type=”string”>select</item> <item name=”label” xsi:type=”string”… Read More »Magento 2 – Admin grid filter should be single select

How to override Magento_CatalogWidget::product/widget/content/grid.phtml widget template in custom Module?

I want to override grid.phtml in custome module without using preference.I have tried this link but it does not work for me. widget.xml <?xml version=”1.0″ encoding=”UTF-8″?> <widgets xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xsi:noNamespaceSchemaLocation=”urn:magento:module:Magento_Widget:etc/widget_file.xsd”> <widget id=”products_list”> <parameters> <parameter name=”template” xsi:type=”select”> <options> <option name=”grid” value=”Vendor_Module::product/widget/content/grid.phtml”> <label… Read More »How to override Magento_CatalogWidget::product/widget/content/grid.phtml widget template in custom Module?