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
635
Printing Band 0 only
posted

Hi,

I've got a grid with a hierarchical datasource bound to it. Is it possible, when printing the grid, only to print the Band 0 rows?

 

Thanks

Jim

Parents
  • 6120
    Offline posted

    Hi Jim,

    You can achieve this by hiding other bands of your Grid’s DisplayLayout. For example you can do something like this             

       for (int i = 1; i < e.Layout.Bands.Count; i++)
           {
               e.Layout.Bands[i].Hidden = true;
           }

    Please let me know if you have any other questions.

    Sincerely,
    Sahaja Kokkalagadda

Reply Children
No Data