I want to add Tabs in Columns control of my custom extension’s UI Grid to categorize columns.
For Example:
Just add <columnsControls name="columns_controls"/> under <listingToolbar> tag of your grid uicomponent xml file. If you do not have added <listingToolbar> tag then simply add the below code under <listing> tag of your grid xml.
<listingToolbar name="listing_top">
<argument name="data" xsi:type="array">
<item name="config" xsi:type="array">
<item name="sticky" xsi:type="boolean">true</item>
</item>
</argument>
<exportButton name="export_button"/>
<columnsControls name="columns_controls"/>
</listingToolbar>
Hope it finds you helpful.