Hi,
I need to export UltraWebGrid into report. The report should conosist Header which should be repeatable and appear on each page. I tried all exaples that I found in Infragistics documentatio, I tried with section.AddHeader() ... also I tried band = section.AddBand(); band.Header.Repeat = true; ... but ir doesnt work . I'll appreciate your help.
Thanks
I'd expect section.AddHeader() to work. If it doesn't you should contact developer support and let them know. They'll be able to help you figure out what's going wrong and pass it on as a bug if necessary.
OK I found what the problem is... Header has property Hight which must be set... I thought AutoHeight is working, but instead you must to set the Height to some proper value ... header.Height = 60 ...