Hello,
I can't figure out how to reference a RadioButtonList in a RadGrid GRidtemplate column header template:
| <Columns> |
| <telerik:GridTemplateColumn DataField="cd_nr" HeaderText="cdNr" UniqueName="cdNr"> |
| <HeaderTemplate> |
| <asp:RadioButtonList ID="rbtnLst_cdNo" runat="server" RepeatDirection="Vertical"> |
| <asp:ListItem Text="1" Value="1"></asp:ListItem> |
| </asp:RadioButtonList> |
| </HeaderTemplate> |
In codebehind, I have:
RadioButtonList selCd = rGrd_trckList.MasterTableView.FindControl("rbtnLst_cdNo") as RadioButtonList;
but that's just null.
What am I missing?
knut