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
90
UltraWebGridDocumentExporter
posted

Hi,

I having problem with this control, my code is like this:

 this.uwgdeClients.ExportMode = Infragistics.WebUI.UltraWebGrid.Exporter.ExportMode.InBrowser;
 this.uwgdeClients.Export(this.wwgCoachDashboard);

the error it`s

"Object reference not set to an instance of an object."

any Idea?

I think i have all the references, because the application runs correctly, but when I try to make the report  come out this error.

"Object reference not set to an instance of an object."

Parents
No Data
Reply
  • 2907
    posted

    Where is the declaration of uwgdeClients? In .aspx or in code behind?

     

    If you are declaring uwgdeClients in code behind using new operator then you need to add it to page using such code:

    Page.Controls.Add(uwgdeClients);

    If this doesn’t solve your problem then could you provide sample?

Children
No Data