This is a migrated thread and some comments may be shown as answers.

Radgrid loading on Radmultipageview

1 Answer 67 Views
Grid
This is a migrated thread and some comments may be shown as answers.
suresh
Top achievements
Rank 1
suresh asked on 15 Jul 2011, 01:12 PM
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
        }
    }

1 Answer, 1 is accepted

Sort by
0
Iana Tsolova
Telerik team
answered on 20 Jul 2011, 02:17 PM
Hello Suresh,

Please make sure that no server or client errors are thrown when you launch the page in the problematic browser. I also suggest that you check out the list with the supported browsers and make sure the one you are using is listed there.

Kind regards,
Iana
the Telerik team

Register for the Q2 2011 What's New Webinar Week. Mark your calendar for the week starting July 18th and book your seat for a walk through of all the exciting stuff we will ship with the new release!

Tags
Grid
Asked by
suresh
Top achievements
Rank 1
Answers by
Iana Tsolova
Telerik team
Share this question
or