How to remove secondary UI component in Magento 2?Magento 2 : Problem while adding custom button order view page?Magento 2 : How can I upload files of dynamically added file input fields in the adminMagento2 : Remove fields from Ui Component grid conditionallyAdmin Grid (UI Component) - Remove columns from export in magento2What layout types are there for the UI form component?Invalid UI Component element name: Export button not working?The variables for a UI library component are not foundcomponent in magento2?UI component Export data issue : Magento 2How to remove header footer and left bar on ui component in magento 2
How to make payment on the internet without leaving a money trail?
Does bootstrapped regression allow for inference?
LWC and complex parameters
Patience, young "Padovan"
Why do UK politicians seemingly ignore opinion polls on Brexit?
Is there a name of the flying bionic bird?
Where else does the Shulchan Aruch quote an authority by name?
Why do we use polarized capacitors?
If a centaur druid Wild Shapes into a Giant Elk, do their Charge features stack?
What is the command to reset a PC without deleting any files
Does the average primeness of natural numbers tend to zero?
"My colleague's body is amazing"
Ideas for 3rd eye abilities
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Why was the "bread communication" in the arena of Catching Fire left out in the movie?
Extreme, but not acceptable situation and I can't start the work tomorrow morning
Find the number of surjections from A to B.
Can I legally use front facing blue light in the UK?
How can I plot a Farey diagram?
Map list to bin numbers
What is it called when one voice type sings a 'solo'?
Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore
I’m planning on buying a laser printer but concerned about the life cycle of toner in the machine
What happens when a metallic dragon and a chromatic dragon mate?
How to remove secondary UI component in Magento 2?
Magento 2 : Problem while adding custom button order view page?Magento 2 : How can I upload files of dynamically added file input fields in the adminMagento2 : Remove fields from Ui Component grid conditionallyAdmin Grid (UI Component) - Remove columns from export in magento2What layout types are there for the UI form component?Invalid UI Component element name: Export button not working?The variables for a UI library component are not foundcomponent in magento2?UI component Export data issue : Magento 2How to remove header footer and left bar on ui component in magento 2
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I want to remove export component from order toolbar page in Magento 2 admin.
I have already created an custom export component in my module but I want to remove default one.
See screenshot.
Here is my code in "sales_order_grid.xml" in following folder
app/code/VENDOR/MODULE/view/adminhtml/ui_component
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<container name="listing_top">
<exportButton class="MagentoUiComponentExportButton">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="options" xsi:type="array">
<item name="cvs" xsi:type="array">
<item name="value" xsi:type="string">csv</item>
<item name="label" xsi:type="string" translate="true">CSV</item>
<item name="url" xsi:type="string">mui/export/gridToCsv</item>
</item>
<item name="xml" xsi:type="array">
<item name="value" xsi:type="string">xml</item>
<item name="label" xsi:type="string" translate="true">Excel XML</item>
<item name="url" xsi:type="string">mui/export/gridToXml</item>
</item>
<item name="mom" xsi:type="array">
<item name="value" xsi:type="string">mom</item>
<item name="label" xsi:type="string" translate="true">MOM</item>
<item name="url" xsi:type="string">mom/export/gridToMom</item>
</item>
</item>
</item>
</argument>
</exportButton>
</container>
</listing>
My question is how to remove default one or override that in my module?
magento2.2 sales-order uicomponent export
add a comment |
I want to remove export component from order toolbar page in Magento 2 admin.
I have already created an custom export component in my module but I want to remove default one.
See screenshot.
Here is my code in "sales_order_grid.xml" in following folder
app/code/VENDOR/MODULE/view/adminhtml/ui_component
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<container name="listing_top">
<exportButton class="MagentoUiComponentExportButton">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="options" xsi:type="array">
<item name="cvs" xsi:type="array">
<item name="value" xsi:type="string">csv</item>
<item name="label" xsi:type="string" translate="true">CSV</item>
<item name="url" xsi:type="string">mui/export/gridToCsv</item>
</item>
<item name="xml" xsi:type="array">
<item name="value" xsi:type="string">xml</item>
<item name="label" xsi:type="string" translate="true">Excel XML</item>
<item name="url" xsi:type="string">mui/export/gridToXml</item>
</item>
<item name="mom" xsi:type="array">
<item name="value" xsi:type="string">mom</item>
<item name="label" xsi:type="string" translate="true">MOM</item>
<item name="url" xsi:type="string">mom/export/gridToMom</item>
</item>
</item>
</item>
</argument>
</exportButton>
</container>
</listing>
My question is how to remove default one or override that in my module?
magento2.2 sales-order uicomponent export
add a comment |
I want to remove export component from order toolbar page in Magento 2 admin.
I have already created an custom export component in my module but I want to remove default one.
See screenshot.
Here is my code in "sales_order_grid.xml" in following folder
app/code/VENDOR/MODULE/view/adminhtml/ui_component
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<container name="listing_top">
<exportButton class="MagentoUiComponentExportButton">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="options" xsi:type="array">
<item name="cvs" xsi:type="array">
<item name="value" xsi:type="string">csv</item>
<item name="label" xsi:type="string" translate="true">CSV</item>
<item name="url" xsi:type="string">mui/export/gridToCsv</item>
</item>
<item name="xml" xsi:type="array">
<item name="value" xsi:type="string">xml</item>
<item name="label" xsi:type="string" translate="true">Excel XML</item>
<item name="url" xsi:type="string">mui/export/gridToXml</item>
</item>
<item name="mom" xsi:type="array">
<item name="value" xsi:type="string">mom</item>
<item name="label" xsi:type="string" translate="true">MOM</item>
<item name="url" xsi:type="string">mom/export/gridToMom</item>
</item>
</item>
</item>
</argument>
</exportButton>
</container>
</listing>
My question is how to remove default one or override that in my module?
magento2.2 sales-order uicomponent export
I want to remove export component from order toolbar page in Magento 2 admin.
I have already created an custom export component in my module but I want to remove default one.
See screenshot.
Here is my code in "sales_order_grid.xml" in following folder
app/code/VENDOR/MODULE/view/adminhtml/ui_component
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<container name="listing_top">
<exportButton class="MagentoUiComponentExportButton">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="options" xsi:type="array">
<item name="cvs" xsi:type="array">
<item name="value" xsi:type="string">csv</item>
<item name="label" xsi:type="string" translate="true">CSV</item>
<item name="url" xsi:type="string">mui/export/gridToCsv</item>
</item>
<item name="xml" xsi:type="array">
<item name="value" xsi:type="string">xml</item>
<item name="label" xsi:type="string" translate="true">Excel XML</item>
<item name="url" xsi:type="string">mui/export/gridToXml</item>
</item>
<item name="mom" xsi:type="array">
<item name="value" xsi:type="string">mom</item>
<item name="label" xsi:type="string" translate="true">MOM</item>
<item name="url" xsi:type="string">mom/export/gridToMom</item>
</item>
</item>
</item>
</argument>
</exportButton>
</container>
</listing>
My question is how to remove default one or override that in my module?
magento2.2 sales-order uicomponent export
magento2.2 sales-order uicomponent export
asked Apr 5 at 10:32
Arshad HussainArshad Hussain
4361826
4361826
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Change this
<exportButton class="MagentoUiComponentExportButton">
to
<exportButton name="export_button" class="MagentoUiComponentExportButton">
The value of argument "name" should be the same as the mentioned in sales_order_grid uiCompoment of exportButton tag.
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "479"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f268925%2fhow-to-remove-secondary-ui-component-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Change this
<exportButton class="MagentoUiComponentExportButton">
to
<exportButton name="export_button" class="MagentoUiComponentExportButton">
The value of argument "name" should be the same as the mentioned in sales_order_grid uiCompoment of exportButton tag.
add a comment |
Change this
<exportButton class="MagentoUiComponentExportButton">
to
<exportButton name="export_button" class="MagentoUiComponentExportButton">
The value of argument "name" should be the same as the mentioned in sales_order_grid uiCompoment of exportButton tag.
add a comment |
Change this
<exportButton class="MagentoUiComponentExportButton">
to
<exportButton name="export_button" class="MagentoUiComponentExportButton">
The value of argument "name" should be the same as the mentioned in sales_order_grid uiCompoment of exportButton tag.
Change this
<exportButton class="MagentoUiComponentExportButton">
to
<exportButton name="export_button" class="MagentoUiComponentExportButton">
The value of argument "name" should be the same as the mentioned in sales_order_grid uiCompoment of exportButton tag.
answered Apr 5 at 11:25
Amitkumar solankiAmitkumar solanki
443213
443213
add a comment |
add a comment |
Thanks for contributing an answer to Magento Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f268925%2fhow-to-remove-secondary-ui-component-in-magento-2%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown