Hello;
I may be misunderstanding templates.
Can you use them to setup different "views" of your grid, or are they only used with hierarchical data is used?
In other words, instead of creating my colums in the master template can I create three templates with different layouts, then access them as needed?
I have tried to do this, but cannot seem to add a row to them then have it display using:
GridViewDataRowInfo dataRowInfo = new GridViewDataRowInfo(this.radGridView4.MasterTemplate.Templates[0].MasterViewInfo);
dataRowInfo.Cells["repID"].Value = curRow.repID;
radGridView4.Rows.Add(dataRowInfo);
am I missing something simple or simply not understanding their use?
Joe