Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
430
WebDocumentExporter
posted

Hi Infragistics Team,

we are using infragistics 2015 v1 volume . using webdocumentExporter control. we gat PDF file  format Remort .

my question is how to set the Report heading Text ?. & in report Data as Table format . hear attached screen shot . same like that need report data  .

Parents
No Data
Reply
  • 2525
    posted

    Hello Nagarajan,

    The closest you can get to the desired behavior is by the answer supplied in the forum thread here: http://www.infragistics.com/community/forums/t/97447.aspx.

    In the sample provided by Marina, the footer text is applied on Page Load by doing this:

    WebHierarchicalDataGrid1.Rows[0].Items[0].Column.Footer.Text = "This is a footer text";

    If we change the Footer property to Header as such:

    WebHierarchicalDataGrid1.Rows[0].Items[0].Column.Header.Text = "This is a header text";

    This will modify the column's header text which is not what we are looking for unfortunately.

    The WebDocumentExporter taking the content of the grid and exports it as a PDF file, therefore, the header/footer text has to be a property of the grid which is currently not supported.

Children