The grid is represented on the page by the Infragistics Ultra Web Grid control uwgReport (it looks like <igtbl:ultrawebgrid id="uwgReport"> in the code).
A grid control has Bands (lines wihthin a row) and Bands have columns. To create columns, use the following syntax:
<igtbl:UltraGridColumn BaseColumnName="loc" Key="Loc">
<Header Caption="Location" Title="Hover Text" />
</igtbl:UltraGridColumn>
- BaseColumnName - Name of the field to use from the DataSource, it is case sensitive
- Key - Unique key used to access this column in code
- Caption - Text that shows in the Header
- Title - Text that shows when you hover the mouse over the Header