Page 1 of 1
Hide export to excel link text
Posted: Tue Jun 10, 2014 4:54 am
by infgge00
Hi!! I would like to know if it´s possible to hide only the excel export link and show the excel icon.
Thanks!!
Re: Hide export to excel link text
Posted: Wed Jun 11, 2014 4:25 pm
by Scott Klement
You could try setting the 'csv export text' to an empty string. I haven't tried this before, but maybe it'll help?
Code: Select all
pui["runtimeText"]["en_US"]["csv export text"] = "";
That assumes you are using the "en_US" (US English) language, which is the default. If you are using something use, use your language in place of "en_US", above. This feature is typically used to allow the text to be displayed in different languages (like French, Spanish, Italian, etc) but you could potentially use it to remove the 'export to excel' text as well... at least, I think so. Give it a try and see if it works.
Full details of this feature can be found here:
http://www.profoundlogic.com/docs/displ ... ge+Support
Re: Hide export to excel link text
Posted: Fri Jun 13, 2014 9:34 am
by infgge00
It works fine!! thank You very much!!