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.
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?