Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
630
WebDateChooser appear outside grid with scrollbar
posted

I have a edit column with a webdatechooser and it work good.

 but if i scroll down in grid and select a edit cell of my webdatechooser column, the webdate appear outside of my grid and the scrollbar move up and i didnt see my selected cell.

Any solution ?

Screenshot of my bug

Parents
  • 49378
    posted

    Hi danjut,

    Thank you for posting in the community.

    I have created a sample for you illustrating the scenario you have described. I have put the grid (which is populated using the Northwind DB) in the content pane of a master page as this seems like a more precise setup based on the image provided.

    So far using version 11.1 I am unable to replicate the issue under Mozilla 7 and IE9. Additional information regarding your product version and whether the matter is browser specific would be appreaciated and will allow me to continue my research on the issue.

    Please let me know if you have any questions.

    Best Regards,

    Petar Ivanov
    Developer Support Engineer
    Infragistics, Inc.
    http://ko.infragistics.com/support

    UltraWebGridWebDateChooser.zip
Reply
  • 630
    posted in reply to [Infragistics] Petar Ivanov

    I find Exactly what they cause the bug

    In the header title of my page, i use ressource variable :  <%= Resources.PA.PageTitre%>

    if i replace  <%= Resources.PA.PageTitre%> with text all work great

     

    Here a light exemple of aspx with this bug

     <%@ Page Language="vb" AutoEventWireup="false" CodeBehind="wfTest_Grille.aspx.vb" Inherits="WebPortailCegertec.wfTest_Grille" %>
    <%@ Register Assembly="Infragistics35.WebUI.UltraWebGrid.v11.1, Version=11.1.20111.2064, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" Namespace="Infragistics.WebUI.UltraWebGrid" TagPrefix="igtbl" %>
    <%@ Register Assembly="Infragistics35.WebUI.WebDateChooser.v11.1, Version=11.1.20111.2064, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"  Namespace="Infragistics.WebUI.WebSchedule" TagPrefix="igsch" %>

    <!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" style="height: 85%">
    <head>
        <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR" />
        <meta content="C#" name="CODE_LANGUAGE" />
        <meta content="JavaScript" name="vs_defaultClientScript" />
        <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema" />
        <link href="TEST_style.css" rel="stylesheet" type="text/css" />
        <title>
            <%= Resources.PA.PageTitre%></title>
    </head>
    <body style="height: 100%">
        <form id="Form1" method="post" runat="server" style="width: 100%; height: 100%;">
        <asp:ScriptManager ID="ScriptMgr" runat="server" />
        <!-- Titre -->
        <div runat="server" id="SampleTitleDiv" class="sampleTitle">
            <%= Resources.PA.Text_Acheteurs%>
        </div>
        <!-- Description -->
        <div style="height: 50%">
            <div id="divDate" runat="server">
            </div>
            <igtbl:UltraWebGrid ID="GridMain" runat="server" Height="100%" Width="100%" StyleSetName="Office2007Black"
                EnableAppStyling="True">
                <DisplayLayout BorderCollapseDefault="Separate" Name="ctl00xUltraWebGrid1" RowHeightDefault="20px"
                    Version="4.00" AllowUpdateDefault="Yes" AutoGenerateColumns="False" StationaryMargins="HeaderAndFooter"
                    TableLayout="Fixed" CellClickActionDefault="Edit" AllowColSizingDefault="Free"
                    ColFootersVisibleDefault="Yes">
                    <FrameStyle Height="100%" Width="100%" BorderColor="#CCCCCC" BorderStyle="Solid"
                        BorderWidth="1px">
                    </FrameStyle>
                    <ActivationObject BorderColor="" BorderWidth="">
                    </ActivationObject>
                </DisplayLayout>
                <Bands>
                    <igtbl:UltraGridBand Key="Entete">
                        <Columns>
                            <igtbl:UltraGridColumn BaseColumnName="ref_pa_en_id" Key="ref_pa_en_id" Width="100px"
                                AllowUpdate="No">
                                <HeaderStyle HorizontalAlign="Center" />
                                <CellStyle HorizontalAlign="Center" BackColor="LemonChiffon">
                                </CellStyle>
                                <Header Caption="N° DA">
                                </Header>
                            </igtbl:UltraGridColumn>
                            <igtbl:UltraGridColumn BaseColumnName="pa_en_commande_date_livrer" Key="pa_en_commande_date_livrer"
                                DataType="System.DateTime" EditorControlID="wdDate" Format="yyyy-MM-dd" Type="Custom"
                                AllowUpdate="Yes" Width="150px">
                                <HeaderStyle HorizontalAlign="Center" />
                                <CellStyle HorizontalAlign="Center">
                                </CellStyle>
                                <Header Caption="Date de&lt;br&gt;livraison">
                                </Header>
                            </igtbl:UltraGridColumn>
                        </Columns>
                        <HeaderStyle Height="35px" />
                        <AddNewRow View="NotSet" Visible="NotSet">
                        </AddNewRow>
                    </igtbl:UltraGridBand>
                </Bands>
            </igtbl:UltraWebGrid>
            <table style="width: 100%">
                <tr>
                    <td>
                        <igsch:WebDateChooser ID="wdDate" runat="server" NullDateLabel="" TabIndex="2" StyleSetName="Office2007Black">
                            <CalendarLayout Culture="French (Canada)" FooterFormat="Aujourd'***: {0:d}">
                            </CalendarLayout>
                        </igsch:WebDateChooser>
                    </td>
                </tr>
            </table>
        </div>
        </form>
    </body>
    </html>

     

     

Children