Hi George,
Thanks for posting in the community! My name is Steven, and I'll be
assisting you on this issue.
From your description, you has a DataGrid which contains a template column
with a radiobuttonlist in it.
Also you want to set the radionbuttonlist 's item value and select
attribute at runtime during
the time when DataGrid's column is being bind to the data retrieved from
database, yes?
If there is anything I misunderstood, please feel free to let me know.
As for this problem, I think we can use the DataGrid's DataItemBound event
to implement our requirement. In the DataItemBound event, we can retrieve
the certain row which is currently being bund with datas from the
DataSource. Also, we can retrieve the certain row of DataSource. For our
siutation, we want to do some modification on the radiobuttonlist in the
template collumn, we can first retrieve the RadioButtonList control from
the column using "FindControl" and then do operations on it. For example:
private void dgMain_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem)
{
DataRowView drv = (DataRowView)e.Item.DataItem;
System.Web.UI.WebControls.RadioButtonList lst =
(System.Web.UI.WebControls.RadioButtonList)e.Item.Cells[2].FindControl("rblB
ind");
lst.Items[0].Text = drv["grade"].ToString();
lst.Items[0].Value = drv["grade"].ToString();
lst.SelectedIndex = 0;
}
}
#dgMain is the DataGrid in a page
To make such approach clearly, here is a sample page I've made, you can
refer to it if you have anything unclear in my above description:
---------------------------------aspx page----------------------------------
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>RadioButtonList</title>
<meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
<meta name="CODE_LANGUAGE" Content="C#">
<meta name="vs_defaultClientScript" content="JavaScript">
<meta name="vs_targetSchema"
content="
http://schemas.microsoft.com/intellisense/ie5">
</HEAD>
<body>
<form id="Form1" method="post" runat="server">
<table width="500" align="center">
<tr>
<td>
<asp
ataGrid id="dgMain" runat="server" AutoGenerateColumns="False">
<Columns>
<asp:BoundColumn DataField="index"
HeaderText="ID"></asp:BoundColumn>
<asp:BoundColumn DataField="name"
HeaderText="Name"></asp:BoundColumn>
<asp:TemplateColumn HeaderText="BoundList">
<ItemTemplate>
<asp:RadioButtonList id="rblBind" runat="server">
<asp:ListItem Value="BindItem">BindItem</asp:ListItem>
<asp:ListItem Value="ItemA">ItemA</asp:ListItem>
<asp:ListItem Value="ItemB">ItemB</asp:ListItem>
<asp:ListItem Value="ItemC">ItemC</asp:ListItem>
</asp:RadioButtonList>
</ItemTemplate>
</asp:TemplateColumn>
</Columns>
</asp
ataGrid>
</td>
</tr>
<tr>
<td></td>
</tr>
</table>
</form>
</body>
</HTML>
-----------------------------code behind page class------------------
public class RadioButtonList : System.Web.UI.Page
{
protected System.Web.UI.WebControls.DataGrid dgMain;
private void Page_Load(object sender, System.EventArgs e)
{
// Put user code to initialize the page here
if(!IsPostBack)
{
BindGrid();
}
}
protected void BindGrid()
{
DataTable tb = new DataTable();
tb.Columns.Add("index");
tb.Columns.Add("name");
tb.Columns.Add("grade");
for(int i=0;i<15;i++)
{
int index = i+1;
DataRow newrow = tb.NewRow();
newrow["index"] = index.ToString();
newrow["name"] = "name" + index.ToString();
switch(index%3)
{
case 0:
newrow["grade"] = "low";
break;
case 1:
newrow["grade"] = "normal";
break;
case 2:
newrow["grade"] = "high";
break;
}
tb.Rows.Add(newrow);
}
dgMain.DataSource = tb;
dgMain.DataBind();
}
#region Web Form Designer generated code
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: This call is required by the ASP.NET Web Form Designer.
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.dgMain.ItemDataBound += new
System.Web.UI.WebControls.DataGridItemEventHandler(this.dgMain_ItemDataBound
);
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
private void dgMain_ItemDataBound(object sender,
System.Web.UI.WebControls.DataGridItemEventArgs e)
{
if(e.Item.ItemType == ListItemType.Item || e.Item.ItemType ==
ListItemType.AlternatingItem)
{
DataRowView drv = (DataRowView)e.Item.DataItem;
System.Web.UI.WebControls.RadioButtonList lst =
(System.Web.UI.WebControls.RadioButtonList)e.Item.Cells[2].FindControl("rblB
ind");
lst.Items[0].Text = drv["grade"].ToString();
lst.Items[0].Value = drv["grade"].ToString();
lst.SelectedIndex = 0;
}
}
}
----------------------------------------------------------------------------
-------------------------
If you have any further questions, please feel free to post here.
Regards,
Steven Cheng
Microsoft Online Support
Get Secure!
www.microsoft.com/security
(This posting is provided "AS IS", with no warranties, and confers no
rights.)