Hi,
I've a radgrid with 2 columns - gridboundcolumn and other greidtemplate column with a dropdownlist in it.
For the dropdownlist, I'm binding the data in item databound.
These 2 columns have been created in ascx like:
<Columns>
<telerik:GridBoundColumn HeaderText ="Search Criteria" DataField="" UniqueName="SearchCriteria" ReadOnly="true">
</telerik:GridBoundColumn>
<telerik:GridTemplateColumn HeaderText="Mapped Tag" UniqueName ="MappedTag">
<ItemTemplate>
<asp:DropDownList ID="m_radMappedTagCombo" runat="server" Width="100%"></asp:DropDownList>
</ItemTemplate>
</telerik:GridTemplateColumn>
</Columns>
how'll i access my gridboundcolumn in codebehind.
I need to bind some data to the grid bound column??
in cs:
List<string> strList = new List<string(){"aaa","ddd","cc"};
I need to bind strlist to my gridboundcolumn(uniquename for it is "temp").
so, how do i bind gridboundcolumn to strlist in my radgrid.
Note: i've declared my columns in .ascx
Thanks,
ZR