Hi
I have a UltraWebGrid for which i have set the ColFooterVisibleDefault to Yes. In the InitializeLayout Event i set the footer text as follows
DataTable dt = (DataTable)UltraWebGrid1.DataSource;
When i export the grid to PDF using the UltraWebGridDocumentExporter the footer is disappeared.
Any suggestions will be helpful
I have found a temporary solution by adding EndExport event to UltraWebGridDocumentExporter and adding the text in that event.
{
//to export the footer i.e. row count
}