How do I remove CSV and XML options from the export options in the dtatalist view

Confluence User - 28 Mar, 2017

By default,the datalist view has CSV, Excel, XML, and PDF options for the export feature. How can we remove CSV and XML options, so that only Excel and PDF options are available for the user to choose from?

THanks,

 

datalists;userviews

3


28 Mar, 2017
confluenceUser
confluenceUser

Hi, there isn't an option to hide it, but you can use some custom CSS to do it. If you inspect the elements you should be able to use the CSS selectors span.export.csv, span.export.xml { display: none }

 

16 Jun, 2018
confluenceUser
confluenceUser

No option to hide this? But there should be an option to hide this! Thats not good.

All important parts should have a option to hide or show. Like the help icon feature or the page size feature.

20 Jan, 2022
confluenceUser
confluenceUser

<style>
.span.export.excel
{
display:none;
}
</style>

trying to this method. cannot work 


RELATED QUESTIONS

Your answer


To answer a question you'll need an account.

Print