Skip to content

magento man

Trying to override ui_component file

We’ve been customized a module, changing its layout. Everything works fine there with the regular overwriting method, for example: appdesignfrontendXXdefaultXXtemplatespostlist – works fine. But doing it for: appcodeXXBlogviewadminhtmlui_componentblog_post_form.xml To: appdesignfrontendXXdefaultXXviewadminhtmlui_componentblog_post_form.xml It doesn’t seem to override. Does it work differently for… Read More »Trying to override ui_component file

Magento 2 grid uiComponent filters not work for custom string values

My column definition looks like this: <column name=”child_customer_id”> <argument name=”data” xsi:type=”array”> <item name=”config” xsi:type=”array”> <item name=”filter” xsi:type=”string”>text</item> <item name=”label” xsi:type=”string” translate=”true”>Invited Person Registered</item> </item> </argument> </column> My Collection logic looks like this : protected function _initSelect() { parent::_initSelect(); $planName =… Read More »Magento 2 grid uiComponent filters not work for custom string values