Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Intelligence (Analytics)
How to hide available columns binding when export to csv
Hideto
I have created any binding .
and when export that user needs select all column some column .
now they select some columns and export
How to hide display all available column
please suggest me.
Find more posts tagged with
Comments
janderegg
<span style='font-family: Arial'>Hi yuuyuu,<br />
This is not possible for the moment.<br />
You have the open "Allow export" in the advanced properties of your elements but this will work only on the table level but not for a specific column.<br />
The Bugzilla 265490 <a class='bbc_url' href='
https://bugs.eclipse.org/bugs/show_bug.cgi?id=265490'>https://bugs.eclipse.org/bugs/show_bug.cgi?id=265490</a>
; has been submitted for open source BIRT and the TED 21359 for the Actuate Pro version.<br />
Hopefully it will be implemented in a near future.<br />
Janderegg<br />
</span>
dzish
<p>My sollution in js (but with Java object!) and used in visibility tab </p>
<div> </div>
<div>isCsvFormat: function(){</div>
<div> </div>
<div> var isCsv = false;</div>
<div> </div>
<div> var servletRequest = reportContext.getHttpServletRequest();</div>
<div> var exportFormat = servletRequest.getParameter("__format");</div>
<div> </div>
<div> if(exportFormat.equals("csv")){</div>
<div> isCsv = true;</div>
<div> }</div>
<div> </div>
<div> return isCsv;</div>
<div> </div>
<div> }</div>