Im using the asp net ajax controls , a trial version ,so when i use the RAD Scripmanager ,ajax panel and the RAD Grid with Paging it work fine....but when i push the web browser refresh button it stop do the postback,stop do the ajax thing,so my question, is the failure because of the trial version or is a bug ????
3 Answers, 1 is accepted
0
Hi Ronald,
Could you please elaborate a bit more on your scenario? For instance what other controls do your web page contains? If you could send us the probllematic page, this would help us to investigate the issue and find a proper solution for you.
Looking forward to hearing from you,
Iana
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Could you please elaborate a bit more on your scenario? For instance what other controls do your web page contains? If you could send us the probllematic page, this would help us to investigate the issue and find a proper solution for you.
Looking forward to hearing from you,
Iana
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0

Ronald
Top achievements
Rank 1
answered on 25 Jul 2008, 06:32 AM
This is my Test Page...
It seems that in IE 6.0 works perfectly but in Mozilla 3.0 doesnt...
by the way try to press the web browser refresh button several times and fast
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> |
<%@ Register assembly="Telerik.Web.UI" namespace="Telerik.Web.UI" tagprefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<div> |
<telerik:RadScriptManager ID="RadScriptManager1" Runat="server"> |
</telerik:RadScriptManager> |
<telerik:RadAjaxPanel ID="RadAjaxPanel1" runat="server" height="200px" |
HorizontalAlign="NotSet" LoadingPanelID="RadAjaxLoadingPanel1" width="300px"> |
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" Runat="server" |
height="75px" Transparency="50" width="75px"><img alt="Loading..." |
src='<%= RadAjaxLoadingPanel.GetWebResourceUrl(Page, "Telerik.Web.UI.Skins.Default.Ajax.loading.gif") %>' |
style="border:0px;" /></telerik:RadAjaxLoadingPanel> |
<telerik:RadGrid ID="RadGrid1" runat="server" AllowFilteringByColumn="True" |
AllowPaging="True" AllowSorting="True" DataSourceID="SqlDataSource1" |
GridLines="None" Skin="Office2007"><MasterTableView |
AutoGenerateColumns="False" DataKeyNames="ID" DataSourceID="SqlDataSource1"><RowIndicatorColumn |
Visible="False"><HeaderStyle Width="20px" /></RowIndicatorColumn><ExpandCollapseColumn |
Resizable="False" Visible="False"><HeaderStyle Width="20px" /></ExpandCollapseColumn><Columns><telerik:GridBoundColumn |
DataField="ID" DataType="System.Int32" HeaderText="ID" ReadOnly="True" |
SortExpression="ID" UniqueName="ID"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn DataField="NOMBRE_1" HeaderText="NOMBRE_1" |
SortExpression="NOMBRE_1" UniqueName="NOMBRE_1"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn DataField="NOMBRE_2" HeaderText="NOMBRE_2" |
SortExpression="NOMBRE_2" UniqueName="NOMBRE_2"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn DataField="APELLIDO_1" HeaderText="APELLIDO_1" |
SortExpression="APELLIDO_1" UniqueName="APELLIDO_1"> |
</telerik:GridBoundColumn> |
<telerik:GridBoundColumn DataField="APELLIDO_2" HeaderText="APELLIDO_2" |
SortExpression="APELLIDO_2" UniqueName="APELLIDO_2"> |
</telerik:GridBoundColumn> |
</Columns> |
<EditFormSettings> |
<PopUpSettings ScrollBars="None" /> |
</EditFormSettings> |
</MasterTableView> |
</telerik:RadGrid> |
<asp:SqlDataSource ID="SqlDataSource1" runat="server" |
ConnectionString="<%$ ConnectionStrings:DevStarsConnectionString %>" |
SelectCommand="SELECT [ID], [NOMBRE_1], [NOMBRE_2], [APELLIDO_1], [APELLIDO_2] FROM [Desarrolladores]"> |
</asp:SqlDataSource> |
</telerik:RadAjaxPanel> |
</div> |
</form> |
</body> |
</html> |
0
Hi Ronald,
Thank you for the additional information provided.
I tried your code and was able to replicate the issue. However, the same behavior is reproducible with MS GridView and MS AJAX in Firefox 3.0. It seems that this is a browser behavior(problem) and is not connected with RadAjax or RadGrid.
Iana
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Thank you for the additional information provided.
I tried your code and was able to replicate the issue. However, the same behavior is reproducible with MS GridView and MS AJAX in Firefox 3.0. It seems that this is a browser behavior(problem) and is not connected with RadAjax or RadGrid.
Iana
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.