3

When I tried to export data to Csv or xml from ui grid in magento2 it says:

1 exception(s): Exception #0 (Magento\Framework\Exception\LocalizedException): Invalid UI Component element name: ''

I had added export button. My code is given below:

<listingToolbar name="listing_top">
 <exportButton name="export_button">
 <argument name="data" xsi:type="array">
 <item name="config" xsi:type="array">
 <item name="selectProvider" xsi:type="string">custom_order_grid.custom_order_grid.custom_order_columns.ids</item>
 </item>
 </argument>
 </exportButton>
<listingToolbar>
Mohit Kumar Arora
10.2k7 gold badges29 silver badges57 bronze badges
asked Aug 26, 2016 at 7:26
2
  • What is "selectProvider"? I don't see this setting for exportButton component. Commented Feb 3, 2017 at 18:04
  • even I am facing the same issue Commented Feb 22, 2017 at 10:12

2 Answers 2

6

I have found the issue,

Inside columns tag, you need to have selectionsColumn .

<columns name="custom_order_grid_data_columns">
 <selectionsColumn name="ids">
 <argument name="data" xsi:type="array">
 <item name="config" xsi:type="array">
 <item name="indexField" xsi:type="string">id</item>
 <item name="sortOrder" xsi:type="number">10</item>
 </item>
 </argument>
 </selectionsColumn>
 <column name="column_name">
 .
 .
 </column>
</columns>

Once selectionsColumn is added the export works fine

answered Feb 22, 2017 at 10:31
2
  • It works fine. But I can see one more column in the grid with the checkbox(Mass action). How to fix the issuw without adding new column Commented May 12, 2017 at 12:20
  • magento.stackexchange.com/questions/251608/… Commented Nov 28, 2018 at 12:17
2

Add below code in your custom grid XML

<container name="listing_top">
 <exportButton name="export_button">
 <argument name="data" xsi:type="array">
 <item name="config" xsi:type="array">
 <item name="selectProvider" xsi:type="string">custom_listing.custom_listing.custom_columns.ids</item>
 </item>
 </argument>
 </exportButton>
</container>

Please visit below link for more information:

http://devdocs.magento.com/guides/v2.0/ui-components/ui-export.html

answered May 30, 2017 at 11:35

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.