I have an asp.net page where there the ultrawebgrid is present. When the page is loaded the grid is empty. When the grid is empty the grid headers are not shown. I want the headers to be made visible. Can any of you help me in finding a solution for this.
Thanks in Advance
To show the header, you can either create the columns in markup and not bind data during initial load, or bind it to an empty data structure, where the schema is defined, but the data is not present. In both these cases, the grid will show column headers but no data.
-Taz.