The numeric pages on the Pager are not showing up right in my project. If I create a new project, and add in the same code, it works just fine. But in my work project, the current page is not visible and the left part of the background image is cut off. I also cannot do anything with AJAX (200 page from server, nothing updates).
I am not getting any 404 errors (expect when I postback, I get an error saying this._imageDomElement is null in the WebResource.axd for the ScriptManager Hidden Field).
Anyone run into this before and fix it?
| <html xmlns="http://www.w3.org/1999/xhtml"> |
| <head id="Head1" runat="server"> |
| <title>Untitled Page</title> |
| </head> |
| <body> |
| <form id="form1" runat="server"> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> |
| </telerik:RadScriptManager> |
| <telerik:RadGrid ID="RadGrid1" AllowSorting="true" AllowPaging="true" PageSize="5" runat="server"> |
| <PagerStyle Mode="NextPrev" /> |
| </telerik:RadGrid> |
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="RadGrid1"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="RadGrid1" UpdatePanelRenderMode="Block" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |
| </form> |
| </body> |
| </html> |
I am not getting any 404 errors (expect when I postback, I get an error saying this._imageDomElement is null in the WebResource.axd for the ScriptManager Hidden Field).
Anyone run into this before and fix it?