Hi there,
I have using Radtabstrip with 5 radtabs.In the Radmultipageview i am using only one page view with one asp:Placeholder .In that page i have created Radgrid dynamically using pageInt event.When i click anyone of the tab, Radgrid shows the respected data for different radtabs and dynamically added it to the placeholder.So each tabs show the different datas in the single Radgrid in a single pageview..My problem is,that scenario works fine for some browsers..But in the case of browser like moZila,....every tabs shows the grid same as first tab which has contain first tab content...What mistake i have done..Please explain..
my code ..
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (!Page.IsCallback)
{
if (!Page.IsPostBack)
{
Session["table"] = null;
}
if (null == Session["table"])
{
if (Session["userID"] != null)
{
//do something
}
Session["table"] = tableName;
}
else
{
tableName = Session["table"].ToString();
}
//Creating grid contents
PopulateGrid(tableName);
}
else
{
//Do nothing
}
}
I have using Radtabstrip with 5 radtabs.In the Radmultipageview i am using only one page view with one asp:Placeholder .In that page i have created Radgrid dynamically using pageInt event.When i click anyone of the tab, Radgrid shows the respected data for different radtabs and dynamically added it to the placeholder.So each tabs show the different datas in the single Radgrid in a single pageview..My problem is,that scenario works fine for some browsers..But in the case of browser like moZila,....every tabs shows the grid same as first tab which has contain first tab content...What mistake i have done..Please explain..
my code ..
protected override void OnInit(EventArgs e)
{
base.OnInit(e);
if (!Page.IsCallback)
{
if (!Page.IsPostBack)
{
Session["table"] = null;
}
if (null == Session["table"])
{
if (Session["userID"] != null)
{
//do something
}
Session["table"] = tableName;
}
else
{
tableName = Session["table"].ToString();
}
//Creating grid contents
PopulateGrid(tableName);
}
else
{
//Do nothing
}
}