In the UltraWebGrid Designer in the section "Bands -> Column Arrangement Overview ("Use Groups and Levels" selected) -> Design Column Arrangement Now" there are icons to the left of each of the columns. What do these icons represent? Is there documentation?
Trevor
Hi Trevor,
Did you mean WinGrid? You said "UltraWebGrid Designer", but this is the WinForms forum.
In WinGrid, I think the icons just represent bands and column. There are probably different icons for bound and unbound columns.
Thanks for getting back to me. I did mean WinGrid - right forum, bad typer. I was looking at it further and it does look like bound vs. unbound, thanks.
So now I've bounded all my columns, which is good. Now when there is no data present none of the column headers show up. Is there a setting to change this behavior? I want the column headers to always appear in the grid!
What exactly do you mean by "no data present".
It sounds like you are not binding the grid to a DataSource or else you are binding it to a DataSource that does not have a structure on it's own. The grid must have a data source in order to have columns. Also, if you are using an untyped data source, then the grid has no way of determining the column structure unless there is at least one row. So you porbably want to make sure you use a typed data source.
Mike,
Thanks. It turned out to be that the DataSource did not have a structure, in fact, it was null. This was a bug in my code and once that was fixed the grid behaved as expected.