This question is locked. New answers and comments are not allowed.
Hi,
I have a TabStrip of which one of the Tabs is a Partial View loaded by LoadContentFrom(). The Partial View contains an Ajax Grid. The html page renders well when using Google Chrome and IE, but fails to load the grid when using Mozilla Firefox. I tried to see why this was happening using Fiddler tool and I found that the javascript files for the grid were not loaded when using Mozilla. This does not happen when using Google Chrome or IE.
I searched on web looking for this specific issue and most of what I could see recommended adding grid javascript files manually using script registrar. So I tried the same, but doing so actually ended up with two sets of grid javascript files, which resulted in grid again not working. Also I came accross an article on web which stated that beginning from Telerik Q2 2011, there was no need to register the grid javascript (when using grid in partial view), and this seems to be correct as the grid is working in my case on Google Chrome and IE. If any one can please help me resolve this issue (specific to Mozilla Firefox only), I would be very grateful. Here is the TabStrip code that I am using
In the above code, the DonorList action method returns a Partial View which has Grid inside it.
regards,
Nirvan.
I have a TabStrip of which one of the Tabs is a Partial View loaded by LoadContentFrom(). The Partial View contains an Ajax Grid. The html page renders well when using Google Chrome and IE, but fails to load the grid when using Mozilla Firefox. I tried to see why this was happening using Fiddler tool and I found that the javascript files for the grid were not loaded when using Mozilla. This does not happen when using Google Chrome or IE.
I searched on web looking for this specific issue and most of what I could see recommended adding grid javascript files manually using script registrar. So I tried the same, but doing so actually ended up with two sets of grid javascript files, which resulted in grid again not working. Also I came accross an article on web which stated that beginning from Telerik Q2 2011, there was no need to register the grid javascript (when using grid in partial view), and this seems to be correct as the grid is working in my case on Google Chrome and IE. If any one can please help me resolve this issue (specific to Mozilla Firefox only), I would be very grateful. Here is the TabStrip code that I am using
@(Html.Telerik().TabStrip().Name("TabStrip")
.Items(items =>
{
items.Add().Text("Donor List")
.LoadContentFrom("DonorList", "DonorSearch").Selected(true);
}))
In the above code, the DonorList action method returns a Partial View which has Grid inside it.
regards,
Nirvan.