This is a migrated thread and some comments may be shown as answers.

Exclude some control from exporting through ClientExportManager

1 Answer 28 Views
ClientExportManager
This is a migrated thread and some comments may be shown as answers.
walter ciceri
Top achievements
Rank 2
walter ciceri asked on 03 May 2015, 09:01 PM

Hi all

I would like to know if it is possible exclude exporting of some control inside the export area. ( button for example )

Tks in advance

Walter

1 Answer, 1 is accepted

Sort by
0
Dimitar
Telerik team
answered on 04 May 2015, 02:54 PM
Hello Walter,

You could exclude an element from exporting by setting its display property to none, using the .k-pdf-export class in combination with a selector for the corresponding element:

<style type="text/css">
    .k-pdf-export #myElementId {
        display:none;
    }
</style>

Thus, the element will be visible on your page, but it would not be exported.

Regards,
Dimitar
Telerik
 

See What's Next in App Development. Register for TelerikNEXT.

 
Tags
ClientExportManager
Asked by
walter ciceri
Top achievements
Rank 2
Answers by
Dimitar
Telerik team
Share this question
or