Hello,
I have a WebGrid where data from a search result is shown, some parts of it are calculated from original database rows, which in turn means that each row in the Grid has at least 2 corresponding rows in the backend.
For the users sake, i have enabled OutlookGroupBy to make summing up, sorting and showing values easier and more comprehensible, so this is absolutely needed - but i would also need to show the corresponding backend rows for each row in the grid (possibly for editing/updating). This would lead me to using multiple bands.
I have tried both, both work fine seperately - but is there a way to use them together?
Best regards,
Alexander Strnad
Setting OutlookGroupBy is like setting the property to Hierarchical as well as OutlookGroupBy. When you have it set the grid should automatically pick up any hierarchy you have set up in the grid.
Helen
Ok. I have the grid bound to an IList<BusinessObject> and the BusinessObject has a property which exposes an IList<OtherBusinessObject>. I have set the band 0 childbandcolumn to the name of the property and added band 1 with the same name and some colums that exist as properties inside the OtherBusinessObject.
When i populate the grid with data, band0 has data, but no + signs to expand for band 1 - is there something i forgot?
Alex