Hi all,
In my app, I have a RadGrid which I built dynamically by adding coulmns in the page_init()... One column is a GridTemplateColumn with a custom ItemTemplate. Everything works fine but I would like to know if there a way to get the column(GridTemplateColumn) reference in InstantiateIn method ?
Thanks
Osman
In my app, I have a RadGrid which I built dynamically by adding coulmns in the page_init()... One column is a GridTemplateColumn with a custom ItemTemplate. Everything works fine but I would like to know if there a way to get the column(GridTemplateColumn) reference in InstantiateIn method ?
public class myTemplate : ITemplate |
{ |
void ITemplate.InstantiateIn(Control container) |
{ |
//want to get the reference of column here |
} |
} |
Thanks
Osman