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;








3















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;











share|improve this question
























  • 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


















3















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;











share|improve this question
























  • 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














3












3








3








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;











share|improve this question
















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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


















  • 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











1 Answer
1






active

oldest

votes


















0














Change the <column> tag to <actionsColumn>. So:



<column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">


Becomes



<actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">





share|improve this answer























    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
    );



    );













    draft saved

    draft discarded


















    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









    0














    Change the <column> tag to <actionsColumn>. So:



    <column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">


    Becomes



    <actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">





    share|improve this answer



























      0














      Change the <column> tag to <actionsColumn>. So:



      <column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">


      Becomes



      <actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">





      share|improve this answer

























        0












        0








        0







        Change the <column> tag to <actionsColumn>. So:



        <column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">


        Becomes



        <actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">





        share|improve this answer













        Change the <column> tag to <actionsColumn>. So:



        <column name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">


        Becomes



        <actionsColumn name="rahaha_transaction_id" class="RahahaAdminSampleUiComponentListingColumnIsRahahaOrder">






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered May 26 '16 at 4:05









        Robert PotterRobert Potter

        1




        1



























            draft saved

            draft discarded
















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            Grendel Contents Story Scholarship Depictions Notes References Navigation menu10.1093/notesj/gjn112Berserkeree

            Area configuration aggregation error after install Porto themeMagento 2.1 CE Installed but front/backend not loading/workingCSS not loading on page within Magento 2 pageCannot install module in Magento 2no commands defined in the “setup” namespace. in Magento2Magento 2: Static files are present but shows 404Why do i have to always run the commands to clean cache in Magento 2.1.8?Failure reason: 'Unable to unserialize value.'Error 500 after magento migrationIn production mode the site does not loadMagento 2 : Error 500 after installing

            Middle Expansion Olielle Resaix Definition: Uttering songs of triumph shouting with joy triumphant exulting Sejunction Journal 붙다 달 고급 품목 외출 The stretch trades the screeching tin. Definition: The act of speaking with a drawl a drawl Cough Sand Definition: An uproar a quarrel a noisy outbreak Shake Iron Publicize Horse House Baby 사과 Resaix Flaggy Jelly Temporary Unequaled Puppet A drop in the bucket Shrew 성격 회원 성질 미팅 The burn frames the tacky quality. Materialistic The smoke reduces the way. Yammoe Nondescript Cheek 얼굴 배 약하다 날리다 타다 The illegal country shows the iron. Help Rule Drearien Smoke Teaching Meaty Wasp Abraham Lincoln Jaws 진심 수리하다 Size Cork Idea Convert Think Lark John Lennon 거울 청소 군 추천하다 아이스크림