10

I want to add link to order in ui component grid for my custom logs table.

I was able to successfully split in lines log message with

 $item[$this->getData('name')] = html_entity_decode(nl2br($item[$this->getData('name')]));

but this approach does not work for anchors:

public function prepareDataSource(array $dataSource)
{
 if (isset($dataSource['data']['items'])) {
 foreach ($dataSource['data']['items'] as & $item) {
 if (array_key_exists('order_id', $item) && !empty($item['order_id'])) {
 try {
 if ($order = $this->orderRepository->get($item['order_id'])) {
 $url = $this->storeManager->getStore()->getUrl('sales/order/view', ['order_id' => $order->getEntityId()]);
 $item[$this->getData('name')] = html_entity_decode("<a href=\"$url\">" . $order->getIncrementId() . "</a>");
 }
 } catch (\Magento\Framework\Exception\NoSuchEntityException $e) {
 }
 }
 }
 }
 return $dataSource;
}

in grid looks like https://i.sstatic.net/0PFln.png

Is there a way to not escape html entities in the UI component grid?

asked Nov 7, 2016 at 8:13
1
  • I tried below code ui commponnet admin grid HTML works fine <bodyTmpl>ui/grid/cells/html</bodyTmpl> Commented May 17, 2021 at 7:24

2 Answers 2

23
 <column name="order" class="Vendor\OrderExport\Ui\Component\Listing\Column\VendorLog\OrderId">
 <argument name="data" xsi:type="array">
 <item name="config" xsi:type="array">
 <item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>
 <item name="label" xsi:type="string" translate="true">Order ID</item>
 </item>
 </argument>
 </column>

Setting body template for cell fixed issue: <item name="bodyTmpl" xsi:type="string">ui/grid/cells/html</item>

answered Nov 7, 2016 at 8:50
0
-2

I had got struck in the same issue some days back, after digging for sometime, I was able to solve the issue. Please find the code below.

<?php
 namespace Evry\Creditlimit\Ui\Component\Listing\Grid\Column;
 use Magento\Framework\View\Element\UiComponent\ContextInterface;
 use Magento\Framework\View\Element\UiComponentFactory;
 use Magento\Ui\Component\Listing\Columns\Column;
 use Magento\Framework\UrlInterface;
 use \Magento\Sales\Api\Data\OrderInterface;
 class Action extends Column 
 {
 /** Url path */
 const ROW_EDIT_URL = 'sales/order/view/';
 /** @var UrlInterface */
 protected $_urlBuilder;
 protected $_orderRepository;
 protected $_storeManager;
 /**
 * @var string
 */
 private $_editUrl;
 public function __construct(
 ContextInterface $context,
 UiComponentFactory $uiComponentFactory,
 UrlInterface $urlBuilder,
 OrderInterface $orderRepository,
 StoreManagerInterface $storeManager,
 array $components = [],
 array $data = [],
 $editUrl = self::ROW_EDIT_URL
) 
{
 $this->_urlBuilder = $urlBuilder;
 $this->_editUrl = $editUrl;
 $this->_orderRepository = $orderRepository;
 $this->_storeManager = $storeManager;
 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) {
 try {
 if ($order = $this->_orderRepository->loadByIncrementId($item['order_id'])) {
 $url = $this->_urlBuilder->getUrl($this->_editUrl,['order_id' => $order->getEntityId()]); 
 $item[$this->getData('name')] = html_entity_decode("<a href=\"$url\" target=\"_blank\">" . $item['order_id'] . "</a>");
 }
 } catch (\Magento\Framework\Exception\NoSuchEntityException $e) {
 }
 }
 }
 return $dataSource;
 }
}
answered Mar 22, 2017 at 14:13
2
  • your answer is exactly same as question, moreover this is showing anchor tag directly Commented May 2, 2017 at 9:09
  • @arushi : You probably missed something from the code. Please check the following url. I am using the same code and it is working as expected ibb.co/hyAdak Commented May 12, 2017 at 7:15

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.