or
Both servers, at my company and client, the specs are identical:
Windows Server 2008 R2 Standard de 64 bits
IIS 7.5
EDIT: We're using IE8 as the testing browser.
The image in attachment, reflects whats happening at the client.
Here is the code i'm using:
| <telerik:RadScheduler ID="radSchedual" DataSourceID="odsSchedual" AllowDelete="true" AllowEdit="true" AllowInsert="true" DataEndField="EndDate" |
| DataStartField="StartDate" DataKeyField="Id" DataSubjectField="Subject" FirstDayOfWeek="Monday" LastDayOfWeek="Friday" |
| StartEditingInAdvancedForm="true" StartInsertingInAdvancedForm="true" SelectedView="WeekView" Skin="Vista" Height="550px"> |
| <AdvancedForm Modal="true" /> |
| <AppointmentTemplate> |
| <div><%# Eval("Subject") %></div> |
| </AppointmentTemplate> |
| </telerik:RadScheduler> |
| <asp:ObjectDataSource ID="odsSchedual" EnablePaging="false" OldValuesParameterFormatString="{0}" runat="server" |
| SelectMethod="Get" UpdateMethod="Update" DeleteMethod="Delete" InsertMethod="Set" |
| TypeName="Cil.ReunioesDigitais.Business.BoardMeetingBusiness, Cil.ReunioesDigitais.Business, Version=1.0.0.0, Culture=neutral, PublicKeyToken=9fcff07d8bed6e3a"> |
| <InsertParameters> |
| <asp:Parameter DbType="Guid" Name="userGuid" /> |
| </InsertParameters> |
| <UpdateParameters> |
| <asp:Parameter DbType="Guid" Name="userGuid" /> |
| </UpdateParameters> |
| </asp:ObjectDataSource> |
I'm hoping some help in resolving this issue. I've search the web for a similar problem, but didnt find any.
Thank you for your time.
gv.PagerStyle.PagerTextFormat =
"Page:{4} Page {0} of {1}";
Is there some other method I need to be using?
| <telerik:RadGrid ID="gv" |
| OnNeedDataSource="gv_NeedDataSource" |
| OnItemCommand="gv_OnItemCommand" |
| AllowMultiRowSelection="true" |
| PageSize="50" |
| Width="625px" |
| Skin="Windows7" |
| CssClass="Custom" |
| runat="server" > |
| <ClientSettings> |
| <Selecting AllowRowSelect="true" /> |
| </ClientSettings> |
| <MasterTableView DataKeyNames="messageID, messageRead" AutoGenerateColumns="False" Width="100%" AllowSorting="true" AllowPaging="true" AllowCustomPaging="true" TableLayout="Fixed"> |
| <PagerStyle Mode="NextPrevAndNumeric" Position="TopAndBottom" PageButtonCount="5" /> |
| <Columns> |
| <telerik:GridClientSelectColumn HeaderStyle-Width="35px" ItemStyle-Width="35px" ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center" /> |
| <telerik:GridTemplateColumn SortExpression="Subject" UniqueName="Subject" EditFormColumnIndex="2"> |
| <ItemTemplate> |
| <asp:LinkButton ID="lbMsg" Text='<%#Eval("subject")%>' runat="server" CommandArgument='<%#Eval("messageID")%>' CommandName="msg"/> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| <telerik:GridTemplateColumn SortExpression="messageDate" UniqueName="Date" EditFormColumnIndex="3"> |
| <ItemTemplate> |
| <%#GetDate(Eval("messageDate"), Eval("messageRead"))%> |
| </ItemTemplate> |
| </telerik:GridTemplateColumn> |
| </Columns> |
| </MasterTableView> |
| </telerik:RadGrid> |
| <telerik:RadAjaxPanel ID="rap" runat="server" EnablePageHeadUpdate="false" LoadingPanelID="ralp" ClientEvents-OnRequestStart="function() {return false;}"> |
| <asp:Login ID="l1" runat="server" onauthenticate="l1_Authenticate" onloggedin="l1_LoggedIn"> |
| <LayoutTemplate> |
| <fieldset> |
| <div class="field"> |
| <asp:Label ID="UserNameLabel" runat="server" AssociatedControlID="UserName" /> |
| <asp:TextBox ID="UserName" runat="server" CssClass="text en" MaxLength="512" autocomplete="off" /> |
| <asp:RequiredFieldValidator ID="UserNameRequired" runat="server" ControlToValidate="UserName" CssClass="validation-error" |
| ValidationGroup="Login1" SetFocusOnError="true" EnableClientScript="true" /> |
| </div> |
| <div class="field"> |
| <asp:Label ID="PasswordLabel" runat="server" AssociatedControlID="Password" /> |
| <asp:TextBox ID="Password" runat="server" TextMode="Password" CssClass="text en"></asp:TextBox> |
| <asp:RequiredFieldValidator ID="PasswordRequired" runat="server" ControlToValidate="Password" CssClass="validation-error" |
| ValidationGroup="Login1" SetFocusOnError="true" EnableClientScript="true" /> |
| </div> |
| <div class="field"> |
| <asp:Label ID="RememberMeLabel" runat="server" Text="" AssociatedControlID="RememberMe" /> |
| <asp:CheckBox ID="RememberMe" runat="server" Text="" /> |
| <span class="validation-error"> </span> |
| </div> |
| <asp:Panel ID="pnlCap" runat="server" Visible="false" class="field captcha"> |
| <asp:Label ID="lblEnterCaptchaCode" runat="server" AssociatedControlID="txtCaptchaCode" /> |
| <asp:TextBox ID="txtCaptchaCode" runat="server" CssClass="text en" Width="130" ValidationGroup="Login1" /> |
| <asp:RequiredFieldValidator ID="rfvCap" runat="server" ControlToValidate="txtCaptchaCode" CssClass="validation-error" |
| ValidationGroup="Login1" SetFocusOnError="true" /> |
| <br /> |
| <br /> |
| <telerik:RadCaptcha ID="captcha" runat="server" ValidationGroup="Login1" CaptchaAudioLinkButtonText="" |
| CaptchaTextBoxLabel="" EnableRefreshImage="True" CaptchaLinkButtonText="<span>تولید تصویر جدید</span>" |
| ValidatedTextBoxID="txtCaptchaCode"> |
| <CaptchaImage TextColor="#009900" EnableCaptchaAudio="True" FontFamily="Courier New" UseAudioFiles="True" LineNoise="Medium" |
| UseRandomFont="False" ImageAlternativeText="کد امنیتی" Width="150" RenderImageOnly="True" /> |
| </telerik:RadCaptcha> |
| </asp:Panel> |
| <div class="buttons left"> |
| <asp:ImageButton ID="LoginButton" runat="server" CommandName="Login" CssClass="login-button" AlternateText="Log In" ImageUrl="http://cdn.samservice.dev/images/spacer.gif" |
| ValidationGroup="Login1" /> |
| </div> |
| <div class="message-field"> |
| <asp:Literal ID="FailureText" runat="server" EnableViewState="False"></asp:Literal> |
| </div> |
| </fieldset> |
| </LayoutTemplate> |
| </asp:Login> |
| </telerik:RadAjaxPanel> |
| rap.ClientEvents.OnResponseEnd = String.Format("EnableValidators(['{0}', '{1}', '{2}']);", rfvCap.ClientID, rfvPW.ClientID, rfvUN.ClientID); |
| function EnableValidators(list) { |
| //Page_Validators |
| var a = $(list).filter(function (index, el) { |
| return (document.getElementById(el) != null); |
| }).toArray(); |
| Page_Validators = jQuery.makeArray($(jQuery.map(a, function (el, i) { |
| return (document.getElementById(el)); |
| })).toArray()); |
| } |
