Hello,
I've the need of having two type of export based on the user level, for some user (the most of them) I need only to export to PDF, for some superuser I need to export also to xls .... how can I do that?
I've used this in the web.config :
Thanks
Paolo
I've the need of having two type of export based on the user level, for some user (the most of them) I need only to export to PDF, for some superuser I need to export also to xls .... how can I do that?
I've used this in the web.config :
<Telerik.Reporting> <Extensions> <Render> <Extension name="PDF" visible="true"> <Parameters> <Parameter name="FontEmbedding" value="Subset" /> </Parameters> </Extension> <Extension name="CSV" visible="false" /> <!--<Extension name="IMAGE" visible="false"> </Extension>--> <Extension name="RTF" visible="false"> </Extension> <Extension name="MHTML" visible="false"> </Extension> <Extension name="XLS" visible="false"> </Extension> <Extension name="XPS" visible="false"> </Extension> </Render> </Extensions> </Telerik.Reporting>Thanks
Paolo