Hi James,
I built up a tets demo based on your code and I was able to reproduce the problem. However, it turned out to be a general ASP problem because it can be reproduced without using RadWindow or any RadControls at all. I searched teh net and found the following solution:
http://www.tech-archive.net/Archive/DotNet/microsoft.public.dotnet.framework.aspnet/2005-08/msg02915.html
I modified my demo accordingly and it started working. You can examine and test my sample code below:
markup:
code - behind:
protected
void
Page_Load(
object
sender, EventArgs e)
{
rptrRulesetCategories.DataSource = GetData();
rptrRulesetCategories.DataBind();
}
protected
void
btnManageCategoriesSave_Click(
object
sender, EventArgs e)
{
Response.Write(((TextBox)rptrRulesetCategories.Controls[0].Controls[1]).Text);
}
protected
DataTable GetData()
{
DataTable tbl =
new
DataTable();
tbl.Columns.Add(
new
DataColumn(
"FirstColumn"
));
tbl.Columns.Add(
new
DataColumn(
"SecondColumn"
));
tbl.Columns.Add(
new
DataColumn(
"ThirdColumn"
));
tbl.Columns.Add(
new
DataColumn(
"FourthColumn"
));
tbl.Rows.Add(
new
object
[] {
"firstRecord1"
,
"firstRecord2"
,
"firstRecord3"
,
"firstRecord4"
});
tbl.Rows.Add(
new
object
[] {
"secondRecord1"
,
"secondRecord2"
,
"secondRecord3"
,
"secondRecord4"
});
tbl.Rows.Add(
new
object
[] {
"thirdRecord1"
,
"thirdRecord2"
,
"thirdRecord3"
,
"thirdRecord4"
});
return
tbl;
}
I hope that my reply and research are helpful.
Regards,
Svetlina
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the
Telerik Public Issue Tracking system and vote to affect the priority of the items.