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
150
Hiding footer row when ultrawebgrid is exported as pdf document
posted

Hi,

In my application, we are using document exporter to export an ultrawebgrid control in pdf format. This grid is hierarchical grid with 2 bands and footer is displayed only for Band[0]. When the grid is displayed on screen, we want to show footer row, but when data is exported to PDF, this row should be hidden.

So on the required download button click event, before calling documentexporter's export method, I'm hiding grid footer by setting following property

uwgGrid.Bands[0].ColHeadersVisible =

ShowMarginInfo.No;

But the footer row is not hidden in pdf. Please help