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

RadGrid PDF export

3 Answers 84 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Phil
Top achievements
Rank 1
Phil asked on 02 Dec 2008, 02:30 PM
I have a RadGrid with a GridTemplateColumn that has a table in it.  It will display fine on the page but when I export to PDF, the table does not show.  Is there something special I have to do for the table to show up in the PDF export?  I tried just a basic HTML table and also an asp.net table.  I also tried using a RadGrid in the template also and still nothing exported.

I'm only using the RadGrid for this cause of the exporting option it has.

3 Answers, 1 is accepted

Sort by
0
Daniel
Telerik team
answered on 02 Dec 2008, 03:31 PM
Hello Phil,

Currently our RadGrid control does not offer the functionality to export nested tables in PDF format. I added your request to our "product backlog" for future consideration.

Best regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Duc
Top achievements
Rank 1
answered on 24 Dec 2008, 03:18 PM
Hi Daniel,

Is there any workaround you could suggest for this? I too have a RadGrid with some nested tables inside which I used to customise the grid display a bit more. Like Phil, when I export to PDF I do not see that extra data.

Cheers
Duc
0
Daniel
Telerik team
answered on 29 Dec 2008, 10:18 AM
Hello Duc,

Please test the following approach:
<telerik:GridTemplateColumn> 
    <ItemTemplate> 
        <table width="100px"
            <colgroup> 
                <col /> 
            </colgroup> 
            <tbody> 
                <tr> 
                    <td> 
                        TEST 
                    </td> 
                </tr> 
            </tbody> 
        </table> 
    </ItemTemplate> 
</telerik:GridTemplateColumn> 

I hope this helps.

Best regards,
Daniel
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Grid
Asked by
Phil
Top achievements
Rank 1
Answers by
Daniel
Telerik team
Duc
Top achievements
Rank 1
Share this question
or