Magento 2.0 - Render Custom Sales Order Grid Column as Link instead of plain textHow can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2.1 Create a filter in the product grid by new attributeMagento 2 bar disappeared in Sales Order Grid after adding columnMagento 2.2.5: Overriding Admin Controller sales/orderCustomer export not working after creating custom attributes in magento 2.2.5Magento 2.2.5: Add, Update and Delete existing products Custom OptionsCannot export list of customer from the grid magento 2Magento Customer Grid Custom attribute can't export csv and export xml
Was Mohammed the most popular first name for boys born in Berlin in 2018?
Why Faces eat each other?
Can I bring back Planetary Romance as a genre?
Why do 3D printers have only one limit switch?
Double underlining a result in a system of equations with calculation steps on the right side
What's an appropriate age to involve kids in life changing decisions?
Why do the Avengers care about returning these items in Endgame?
Was there a contingency plan in place if Little Boy failed to detonate?
Names of the Six Tastes
if i accidentally leaked my schools ip address and someone d doses my school am i at fault
Program for finding longest run of zeros from a list of 100 random integers which are either 0 or 1
Why did Missandei say this?
How can I make parentheses stick to formula?
When do you stop "pushing" a book?
What is the Ancient One's mistake?
Has everyone forgotten about wildfire?
Company stopped paying my salary. What are my options?
how to find out if there's files in a folder and exit accordingly (in KSH)
Probability of taking balls without replacement from a bag question
Add Columns to .csv from Multiple Files
What's the difference between "ricochet" and "bounce"?
How do carbureted and fuel injected engines compare in high altitude?
"Estrontium" on poster
Is it a Munchausen Number?
Magento 2.0 - Render Custom Sales Order Grid Column as Link instead of plain text
How can i rewrite TierPrice Block in Magento2magento 2 captcha not rendering if I override layout xmlmain.CRITICAL: Plugin class doesn't existMagento 2.1 Create a filter in the product grid by new attributeMagento 2 bar disappeared in Sales Order Grid after adding columnMagento 2.2.5: Overriding Admin Controller sales/orderCustomer export not working after creating custom attributes in magento 2.2.5Magento 2.2.5: Add, Update and Delete existing products Custom OptionsCannot export list of customer from the grid magento 2Magento Customer Grid Custom attribute can't export csv and export xml
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I managed to add a column on my sales order grid by adding a column to sales_order_grid table and added the following xmls respectively:
di.xml
<virtualType name="MagentoSalesModelResourceModelOrderGrid" type="MagentoSalesModelResourceModelGrid">
<arguments>
<argument name="columns" xsi:type="array">
<item name="rahaha_transaction_id" xsi:type="string">sales_order.rahaha_transaction_id</item>
</argument>
</arguments>
</virtualType>
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/grid/columns/column</item>
</item>
<item name="config" xsi:type="array">
<item name="visible" xsi:type="boolean">true</item>
<item name="dataType" xsi:type="string">text</item>
<item name="align" xsi:type="string">left</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
while I can hardcode the link on the column I added to the sales_order_grid table, is it possible to programmatically convert instead the grid column to show up as an HTML link, instead of plain text?
UPDATE
Ok I have managed to find a "potential" solution, the link shows up but, when you click on the link, it wont open the url but instead go to the Order details page. Any of you know how to solve this? This updated potential solution seems to be better since it also adds a filter to the custom column (which I was supposed to implement next after I have solved this issue).
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="filter" xsi:type="string">text</item>
<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>
<item name="visible" xsi:type="boolean">false</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
IsRahahaOrder.php Class
<?php
namespace RahahaAdminSampleUiComponentListingColumn;
use MagentoFrameworkEscaper;
use MagentoUiComponentListingColumnsColumn;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoSalesModelResourceModelOrderStatusCollectionFactory;
class IsRahahaOrder extends Column
protected $_resource;
protected $_scopeConfig;
protected $escaper;
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
Escaper $escaper,
array $components = [],
array $data = []
)
$this->escaper = $escaper;
parent::__construct($context, $uiComponentFactory, $components, $data);
/**
* Prepare Data Source
*
* @param array $dataSource
* @return array
*/
public function prepareDataSource(array $dataSource)
if (isset($dataSource['data']['items']))
foreach ($dataSource['data']['items'] as & $item)
$item[$this->getData('name')] = "$item[$this->getData('name')]";
return $dataSource;
magento2
add a comment |
I managed to add a column on my sales order grid by adding a column to sales_order_grid table and added the following xmls respectively:
di.xml
<virtualType name="MagentoSalesModelResourceModelOrderGrid" type="MagentoSalesModelResourceModelGrid">
<arguments>
<argument name="columns" xsi:type="array">
<item name="rahaha_transaction_id" xsi:type="string">sales_order.rahaha_transaction_id</item>
</argument>
</arguments>
</virtualType>
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/grid/columns/column</item>
</item>
<item name="config" xsi:type="array">
<item name="visible" xsi:type="boolean">true</item>
<item name="dataType" xsi:type="string">text</item>
<item name="align" xsi:type="string">left</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
while I can hardcode the link on the column I added to the sales_order_grid table, is it possible to programmatically convert instead the grid column to show up as an HTML link, instead of plain text?
UPDATE
Ok I have managed to find a "potential" solution, the link shows up but, when you click on the link, it wont open the url but instead go to the Order details page. Any of you know how to solve this? This updated potential solution seems to be better since it also adds a filter to the custom column (which I was supposed to implement next after I have solved this issue).
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="filter" xsi:type="string">text</item>
<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>
<item name="visible" xsi:type="boolean">false</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
IsRahahaOrder.php Class
<?php
namespace RahahaAdminSampleUiComponentListingColumn;
use MagentoFrameworkEscaper;
use MagentoUiComponentListingColumnsColumn;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoSalesModelResourceModelOrderStatusCollectionFactory;
class IsRahahaOrder extends Column
protected $_resource;
protected $_scopeConfig;
protected $escaper;
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
Escaper $escaper,
array $components = [],
array $data = []
)
$this->escaper = $escaper;
parent::__construct($context, $uiComponentFactory, $components, $data);
/**
* Prepare Data Source
*
* @param array $dataSource
* @return array
*/
public function prepareDataSource(array $dataSource)
if (isset($dataSource['data']['items']))
foreach ($dataSource['data']['items'] as & $item)
$item[$this->getData('name')] = "$item[$this->getData('name')]";
return $dataSource;
magento2
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59
add a comment |
I managed to add a column on my sales order grid by adding a column to sales_order_grid table and added the following xmls respectively:
di.xml
<virtualType name="MagentoSalesModelResourceModelOrderGrid" type="MagentoSalesModelResourceModelGrid">
<arguments>
<argument name="columns" xsi:type="array">
<item name="rahaha_transaction_id" xsi:type="string">sales_order.rahaha_transaction_id</item>
</argument>
</arguments>
</virtualType>
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/grid/columns/column</item>
</item>
<item name="config" xsi:type="array">
<item name="visible" xsi:type="boolean">true</item>
<item name="dataType" xsi:type="string">text</item>
<item name="align" xsi:type="string">left</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
while I can hardcode the link on the column I added to the sales_order_grid table, is it possible to programmatically convert instead the grid column to show up as an HTML link, instead of plain text?
UPDATE
Ok I have managed to find a "potential" solution, the link shows up but, when you click on the link, it wont open the url but instead go to the Order details page. Any of you know how to solve this? This updated potential solution seems to be better since it also adds a filter to the custom column (which I was supposed to implement next after I have solved this issue).
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="filter" xsi:type="string">text</item>
<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>
<item name="visible" xsi:type="boolean">false</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
IsRahahaOrder.php Class
<?php
namespace RahahaAdminSampleUiComponentListingColumn;
use MagentoFrameworkEscaper;
use MagentoUiComponentListingColumnsColumn;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoSalesModelResourceModelOrderStatusCollectionFactory;
class IsRahahaOrder extends Column
protected $_resource;
protected $_scopeConfig;
protected $escaper;
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
Escaper $escaper,
array $components = [],
array $data = []
)
$this->escaper = $escaper;
parent::__construct($context, $uiComponentFactory, $components, $data);
/**
* Prepare Data Source
*
* @param array $dataSource
* @return array
*/
public function prepareDataSource(array $dataSource)
if (isset($dataSource['data']['items']))
foreach ($dataSource['data']['items'] as & $item)
$item[$this->getData('name')] = "$item[$this->getData('name')]";
return $dataSource;
magento2
I managed to add a column on my sales order grid by adding a column to sales_order_grid table and added the following xmls respectively:
di.xml
<virtualType name="MagentoSalesModelResourceModelOrderGrid" type="MagentoSalesModelResourceModelGrid">
<arguments>
<argument name="columns" xsi:type="array">
<item name="rahaha_transaction_id" xsi:type="string">sales_order.rahaha_transaction_id</item>
</argument>
</arguments>
</virtualType>
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id">
<argument name="data" xsi:type="array">
<item name="js_config" xsi:type="array">
<item name="component" xsi:type="string">Magento_Ui/js/grid/columns/column</item>
</item>
<item name="config" xsi:type="array">
<item name="visible" xsi:type="boolean">true</item>
<item name="dataType" xsi:type="string">text</item>
<item name="align" xsi:type="string">left</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
while I can hardcode the link on the column I added to the sales_order_grid table, is it possible to programmatically convert instead the grid column to show up as an HTML link, instead of plain text?
UPDATE
Ok I have managed to find a "potential" solution, the link shows up but, when you click on the link, it wont open the url but instead go to the Order details page. Any of you know how to solve this? This updated potential solution seems to be better since it also adds a filter to the custom column (which I was supposed to implement next after I have solved this issue).
sales_order_grid.xml
<?xml version="1.0" encoding="UTF-8"?>
<listing xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Ui:etc/ui_configuration.xsd">
<columns name="sales_order_columns">
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="filter" xsi:type="string">text</item>
<item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>
<item name="visible" xsi:type="boolean">false</item>
<item name="label" xsi:type="string" translate="true">Rahaha Txn</item>
</item>
</argument>
</column>
</columns>
</listing>
IsRahahaOrder.php Class
<?php
namespace RahahaAdminSampleUiComponentListingColumn;
use MagentoFrameworkEscaper;
use MagentoUiComponentListingColumnsColumn;
use MagentoFrameworkViewElementUiComponentContextInterface;
use MagentoFrameworkViewElementUiComponentFactory;
use MagentoSalesModelResourceModelOrderStatusCollectionFactory;
class IsRahahaOrder extends Column
protected $_resource;
protected $_scopeConfig;
protected $escaper;
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
Escaper $escaper,
array $components = [],
array $data = []
)
$this->escaper = $escaper;
parent::__construct($context, $uiComponentFactory, $components, $data);
/**
* Prepare Data Source
*
* @param array $dataSource
* @return array
*/
public function prepareDataSource(array $dataSource)
if (isset($dataSource['data']['items']))
foreach ($dataSource['data']['items'] as & $item)
$item[$this->getData('name')] = "$item[$this->getData('name')]";
return $dataSource;
magento2
magento2
edited May 10 '16 at 6:59
Rahahaha
asked May 9 '16 at 7:33
RahahahaRahahaha
179316
179316
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59
add a comment |
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59
add a comment |
1 Answer
1
active
oldest
votes
Change the <column> tag to <actionsColumn>. So:
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Becomes
<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
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%2f114493%2fmagento-2-0-render-custom-sales-order-grid-column-as-link-instead-of-plain-tex%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 the <column> tag to <actionsColumn>. So:
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Becomes
<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
add a comment |
Change the <column> tag to <actionsColumn>. So:
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Becomes
<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
add a comment |
Change the <column> tag to <actionsColumn>. So:
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Becomes
<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Change the <column> tag to <actionsColumn>. So:
<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
Becomes
<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">
answered May 26 '16 at 4:05
Robert PotterRobert Potter
1
1
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%2f114493%2fmagento-2-0-render-custom-sales-order-grid-column-as-link-instead-of-plain-tex%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
i have added a potiential solution, it still has issues though. on the line with $item[$this->getData('name')] = "$item[$this->getData('name')]";, we can now make it as link, but it cannot be clicked. clikcing will go to order details page.
– Rahahaha
May 10 '16 at 6:59