Magento2 Add line separator in mass action list in sales order gridMagento2: Dynamic Mass Action in Sales GridAdd mass action in order grid to exportMass action in Sales order gridUpdate to 1.9.2.4 breaks custom Sales Order Grid mass ActionMagento2: Dynamic Mass Action in Sales GridMagento 2 : Add New Grid Mass Action based on conditionMass action in custom grid block Magento 2 not showingSolved - Adding Mass Delete Action to the GridHow to add custom mass action with pop up though UI in Magento2Magento 2 add conditional mass action in sales order gridMagento2 Mass Action to Sales Order Grid
How exactly does artificial gravity work?
Magento 2: How to get type columns of table in sql?
correct spelling of "carruffel" (fuzz, hustle, all that jazz)
In books, how many dragons are there in present time?
How i can place a block anywhere in Store
Why does lemon juice reduce the "fish" odor of sea food — specifically fish?
What is the best way for a skeleton to impersonate human without using magic?
When a land becomes a creature, is it untapped?
Unexpected Netflix account registered to my Gmail address - any way it could be a hack attempt?
Is 12 minutes connection in Bristol Temple Meads long enough?
German characters on US-International keyboard layout
using `is` operator with value type tuples gives error
Safety when modifying old electrical work
Anabelian geometry ~ higher category theory
Non-deterministic Finite Automata | Sipser Example 1.16
On what legal basis did the UK remove the 'European Union' from its passport?
Why do the lights go out when someone enters the dining room on this ship?
How much Replacement does this axiom provide?
What's the difference between "за ... от" and "в ... от"?
What's tha name for when you write multiple voices on same staff? And are there any cons?
Can't find the release for this wiring harness connector
On studying Computer Science vs. Software Engineering to become a proficient coder
Extracting sublists that contain similar elements
Why was Thor doubtful about his worthiness to Mjolnir?
Magento2 Add line separator in mass action list in sales order grid
Magento2: Dynamic Mass Action in Sales GridAdd mass action in order grid to exportMass action in Sales order gridUpdate to 1.9.2.4 breaks custom Sales Order Grid mass ActionMagento2: Dynamic Mass Action in Sales GridMagento 2 : Add New Grid Mass Action based on conditionMass action in custom grid block Magento 2 not showingSolved - Adding Mass Delete Action to the GridHow to add custom mass action with pop up though UI in Magento2Magento 2 add conditional mass action in sales order gridMagento2 Mass Action to Sales Order Grid
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I need to add line separator before my two newly created custom mass action "Custom Action 1" and "Custom Action 2" and
magento2 magento2.2 magento2.3 massaction sales-order-grid
add a comment |
I need to add line separator before my two newly created custom mass action "Custom Action 1" and "Custom Action 2" and
magento2 magento2.2 magento2.3 massaction sales-order-grid
add a comment |
I need to add line separator before my two newly created custom mass action "Custom Action 1" and "Custom Action 2" and
magento2 magento2.2 magento2.3 massaction sales-order-grid
I need to add line separator before my two newly created custom mass action "Custom Action 1" and "Custom Action 2" and
magento2 magento2.2 magento2.3 massaction sales-order-grid
magento2 magento2.2 magento2.3 massaction sales-order-grid
edited May 9 at 6:06
Muhammad Hasham
asked Jan 22 at 9:48
Muhammad HashamMuhammad Hasham
3,80231647
3,80231647
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I got one of the resolution of my question. In order to add line separator between mass action just like Amasty extension. person should add this action in listing_massaction tag in ui component file. It belongs to sales order grid so ui component file should be sales_order_grid.xml
<action name="order_mass_separator">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass_separator</item>
<item name="label" xsi:type="string" translate="true">----------------</item>
</item>
</argument>
</action>
The only difference in this action with others that in this action there is no URL path define. So it is clickable but didn't do any thing.
One more important thing you can't skip item type
I hope my answer will help others as well. if anybody want to add line between custom mass actions in sales order grid, though I am not sure but there may be other solutions as well.
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%2f258701%2fmagento2-add-line-separator-in-mass-action-list-in-sales-order-grid%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
I got one of the resolution of my question. In order to add line separator between mass action just like Amasty extension. person should add this action in listing_massaction tag in ui component file. It belongs to sales order grid so ui component file should be sales_order_grid.xml
<action name="order_mass_separator">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass_separator</item>
<item name="label" xsi:type="string" translate="true">----------------</item>
</item>
</argument>
</action>
The only difference in this action with others that in this action there is no URL path define. So it is clickable but didn't do any thing.
One more important thing you can't skip item type
I hope my answer will help others as well. if anybody want to add line between custom mass actions in sales order grid, though I am not sure but there may be other solutions as well.
add a comment |
I got one of the resolution of my question. In order to add line separator between mass action just like Amasty extension. person should add this action in listing_massaction tag in ui component file. It belongs to sales order grid so ui component file should be sales_order_grid.xml
<action name="order_mass_separator">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass_separator</item>
<item name="label" xsi:type="string" translate="true">----------------</item>
</item>
</argument>
</action>
The only difference in this action with others that in this action there is no URL path define. So it is clickable but didn't do any thing.
One more important thing you can't skip item type
I hope my answer will help others as well. if anybody want to add line between custom mass actions in sales order grid, though I am not sure but there may be other solutions as well.
add a comment |
I got one of the resolution of my question. In order to add line separator between mass action just like Amasty extension. person should add this action in listing_massaction tag in ui component file. It belongs to sales order grid so ui component file should be sales_order_grid.xml
<action name="order_mass_separator">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass_separator</item>
<item name="label" xsi:type="string" translate="true">----------------</item>
</item>
</argument>
</action>
The only difference in this action with others that in this action there is no URL path define. So it is clickable but didn't do any thing.
One more important thing you can't skip item type
I hope my answer will help others as well. if anybody want to add line between custom mass actions in sales order grid, though I am not sure but there may be other solutions as well.
I got one of the resolution of my question. In order to add line separator between mass action just like Amasty extension. person should add this action in listing_massaction tag in ui component file. It belongs to sales order grid so ui component file should be sales_order_grid.xml
<action name="order_mass_separator">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="type" xsi:type="string">order_mass_separator</item>
<item name="label" xsi:type="string" translate="true">----------------</item>
</item>
</argument>
</action>
The only difference in this action with others that in this action there is no URL path define. So it is clickable but didn't do any thing.
One more important thing you can't skip item type
I hope my answer will help others as well. if anybody want to add line between custom mass actions in sales order grid, though I am not sure but there may be other solutions as well.
answered Feb 1 at 12:56
Muhammad HashamMuhammad Hasham
3,80231647
3,80231647
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%2f258701%2fmagento2-add-line-separator-in-mass-action-list-in-sales-order-grid%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