Hello Telerik Team,
I have a dynamic grid on a page, whose fields are taking from database. In order to keep its structure, I need to regenerate the grid at each post back. Like,
--------------------------------
RadGrid radGridDynamic = new RadGrid();
protected void Page_Init(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
radGridDynamic = dynamicRadGridBLL.GenerateRadGrid("Company");
PlaceHolder1.Controls.Add(radGridDynamic);
}
Is there any way to keep the structure alive at each post back?
I have a dynamic grid on a page, whose fields are taking from database. In order to keep its structure, I need to regenerate the grid at each post back. Like,
--------------------------------
RadGrid radGridDynamic = new RadGrid();
protected void Page_Init(object sender, EventArgs e)
{
if (!IsPostBack)
{
}
radGridDynamic = dynamicRadGridBLL.GenerateRadGrid("Company");
PlaceHolder1.Controls.Add(radGridDynamic);
}
Is there any way to keep the structure alive at each post back?