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
145
UltraWebGrid pagination is not working when Browser="Xml"
posted

Hi,

I am using Infragistics UltraWebGrip (Version=7.3.20073.1053). Following is the design code that is being used:

</

 

igtbl:ultrawebgrid><igtbl:ultrawebgrid id="grdPOItem"

 

 

style="Z-INDEX: 114; LEFT: 8px; POSITION: absolute; TOP: 281px" runat="server"

 

Height="192px" width="849" ImageDirectory="/ig_common/Images/" EnableViewState="False"

 

Browser="Xml">

 

<Bands>

 

<igtbl:UltraGridBand>

<

 

 

AddNewRow Visible="NotSet" View="NotSet"></AddNewRow>

 

</igtbl:UltraGridBand>

 

</Bands>

 

<DisplayLayout UseFixedHeaders="True" StationaryMargins="HeaderAndFooter" AllowSortingDefault="OnClient"

 

RowHeightDefault="20px" Version="3.00" SelectTypeRowDefault="Extended" RowsRange="1000" HeaderClickActionDefault="SortMulti"

 

BorderCollapseDefault="Separate" AllowColSizingDefault="Free"

 

EnableInternalRowsManagement="True" Name="grdPOItem" LoadonDemand="Xml" TableLayout="Fixed">

However, after implementing the UltraWebGrid in the above manner, paging is not happening. A separate method for InitializeDataSource is not written in this page because the grid is getting populated using DataSet.

When "next' link is clicked, the grid does not show the next page. It is showing the first page only. Though I can see a partial postback call is happening.

How can I make Browser="Xml" and LoadonDemand="Xml" successful work in this page? Partial postback is an absolute necessary for this grid on this page.

 

 

Parents
  • 15979
    posted

    Hello sormita,

    Thank you for posting on Infragistics forum.

    Can you tell me what kind of Data Source do you use for the grid?

    You can follow this example that shows how to configure the grid to work with Xml “LoadOnDemand” property - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.3/CLR4.0/html/Infragistics4.WebUI.UltraWebGrid.v10.3~Infragistics.WebUI.UltraWebGrid.UltraGridLayout~LoadOnDemand.html

    In the example SQL Data Source is used that is then applied to a “DataSet” trough adapter.

    The description below the example explains how the usage of Xml “LoadOnDemad” affects the usage of the grid functionalities including paging.

    The usage of paging itself is explained in the following article - http://help.infragistics.com/Help/NetAdvantage/ASPNET/2010.3/CLR4.0/html/WebGrid_Setting_Basic_Paging.html

    Follow these guides and let me know if you have any additional questions.

  • 145
    posted in reply to Alex E

    Hi Alex,

    I have implemented all the things suggested by you in your reply. But still the pagination is not happening.

     I created a separate solution for using this Ultrawebgrid with Browser="Xml" and LoadOnDemand="Xml". In this solution, the grid pagination works perfectly fine but in the main solution it is not working.

    Please have a look in the following code which I have created for testing and where pagination is working:

    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head runat="server">
        <title></title>
        <style type="text/css">
            .style1
            {
                width: 354px;
            }
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
        <table style="width:50%;">
            <tr>
                <td class="style1">
                    <asp:TextBox ID="txtPONumber" runat="server"></asp:TextBox>
                </td>
                <td>
                    <asp:Button ID="btnSrch" runat="server" Text="Search" />
                </td>
                <td>
                    &nbsp;</td>
            </tr>
            <tr>
                <td class="style1">
                   
                    <igtbl:UltraWebGrid ID="grdPOnumber" runat="server" Width="323px">
                        <bands>
                            <igtbl:UltraGridBand>
                                <addnewrow view="NotSet" visible="NotSet">
                                </addnewrow>
                            </igtbl:UltraGridBand>
                        </bands>
                        <displaylayout name="UltraWebGrid1" selecttyperowdefault="Single"
                            stationarymarginsoutlookgroupby="True" tablelayout="Fixed" version="4.00"
                            colfootersvisibledefault="Yes">
                            <framestyle bordercolor="#999999" borderstyle="None" borderwidth="3px"
                                cursor="Default" width="323px">
                            </framestyle>
                            <rowalternatestyledefault backcolor="#E9E9F7">
                                <borderdetails colorleft="233, 233, 247" colortop="233, 233, 247" />
                            </rowalternatestyledefault>
                            <headerstyledefault backcolor="#2B64A7" bordercolor="Black" borderstyle="Solid"
                                forecolor="White">
                                <borderdetails colorleft="White" colortop="White" widthleft="1px"
                                    widthtop="1px" />
                            </headerstyledefault>
                            <rowstyledefault backcolor="#C7D5E8" bordercolor="Gray" borderstyle="Solid"
                                borderwidth="1px">
                                <padding left="3px" />
                                <borderdetails colorleft="199, 213, 232" colortop="199, 213, 232" />
                            </rowstyledefault>
                            <selectedrowstyledefault backcolor="#0A75F0" forecolor="White">
                            </selectedrowstyledefault>
                            <activationobject bordercolor="Black" borderstyle="Dotted" borderwidth="">
                            </activationobject>
                            <filteroptionsdefault>
                                <filterdropdownstyle backcolor="White" bordercolor="Silver" borderstyle="Solid"
                                    borderwidth="1px" customrules="overflow:auto;"
                                    font-names="Verdana,Arial,Helvetica,sans-serif" font-size="11px" width="200px">
                                    <padding left="2px" />
                                </filterdropdownstyle>
                                <filterhighlightrowstyle backcolor="#151C55" forecolor="White">
                                </filterhighlightrowstyle>
                                <filteroperanddropdownstyle backcolor="White" bordercolor="Silver"
                                    borderstyle="Solid" borderwidth="1px" customrules="overflow:auto;"
                                    font-names="Verdana,Arial,Helvetica,sans-serif" font-size="11px">
                                    <padding left="2px" />
                                </filteroperanddropdownstyle>
                            </filteroptionsdefault>
                        </displaylayout>
                    </igtbl:UltraWebGrid>
                   
                </td>
                <td>
                    </igtbl:ultrawebgrid><igtbl:ultrawebgrid id="grdPOItem"
                    style="Z-INDEX: 114; LEFT: 8px; POSITION: absolute; TOP: 281px" runat="server"
        Height="192px" width="849" ImageDirectory="/ig_common/Images/" EnableViewState="False"
                    Browser="Xml" onpageindexchanged="grdPOItem_PageIndexChanged">
                        <Bands>
         <igtbl:UltraGridBand>
    <AddNewRow Visible="NotSet" View="NotSet"></AddNewRow>
                        </igtbl:UltraGridBand>
        </Bands>
                        <DisplayLayout UseFixedHeaders="True" StationaryMargins="HeaderAndFooter" AllowSortingDefault="OnClient"
         RowHeightDefault="20px" Version="3.00" SelectTypeRowDefault="Extended" RowsRange="1000" HeaderClickActionDefault="SortMulti"
         BorderCollapseDefault="Separate" AllowColSizingDefault="Free"
                        EnableInternalRowsManagement="True" LoadOnDemand="Xml" Name="grdPOItem" TableLayout="Fixed">
                        <AddNewBox BoxStyle-BorderWidth="1px" BoxStyle-BorderStyle="Solid" BoxStyle-BackColor="LightGray"
                            BoxStyle-BorderDetails-ColorTop="White"
                            BoxStyle-BorderDetails-WidthLeft="1px" BoxStyle-BorderDetails-WidthTop="1px"
                            BoxStyle-BorderDetails-ColorLeft="White">     
    <BoxStyle BackColor="LightGray" BorderWidth="1px" BorderStyle="Solid">
    <BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px"></BorderDetails>
    </BoxStyle>
                        </AddNewBox>
         <HeaderStyleDefault BorderColor="Black" BorderStyle="Solid" HorizontalAlign="Left" ForeColor="Black"
          BackColor="LightGray">
          <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails>
         </HeaderStyleDefault>
                            <FrameStyle width="849px" Cursor="Default" BorderWidth="1px" Font-Size="8pt" Font-Names="Verdana"
          BorderColor="#999999" BorderStyle="Solid" BackColor="#F3F3F6" Height="192px"></FrameStyle>

     

    <Images  ImageDirectory="/ig_common/Images/"></Images>

                            <FooterStyleDefault BorderWidth="1px" BorderStyle="Solid" BackColor="LightGray">
          <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails>
         </FooterStyleDefault>
         <ClientSideEvents AfterXmlHttpResponseProcessed="grdPOItem_AfterXmlHttpResponseProcessed" MouseOverHandler="grdPOItem_OnMouseOver"
          MouseOutHandler="grdPOItem_MouseOutHandler"></ClientSideEvents>
         <ActivationObject BorderStyle="Dotted" BorderWidth="" BorderColor="Black"></ActivationObject>
         <Images></Images>
             <Pager AllowPaging="True">
                            </Pager>
         <EditCellStyleDefault BorderWidth="0px" BorderStyle="None"></EditCellStyleDefault>
         <SelectedRowStyleDefault ForeColor="White" BackColor="#0A246A"></SelectedRowStyleDefault>
         <RowAlternateStyleDefault BackColor="Lavender">
          <Padding Left="3px"></Padding>
          <BorderDetails ColorTop="255, 255, 192" ColorLeft="255, 255, 192"></BorderDetails>
         </RowAlternateStyleDefault>
         <RowStyleDefault BorderWidth="1px" Font-Size="8pt" Font-Names="Verdana" BorderColor="Gray" BorderStyle="Solid"
          BackColor="#C7D5E8">
          <Padding Left="3px"></Padding>
          <BorderDetails ColorTop="White" WidthLeft="0px" WidthTop="0px" ColorLeft="White"></BorderDetails>
         </RowStyleDefault>
                            <FilterOptionsDefault>
          <FilterDropDownStyle width="200px" BorderWidth="1px" Font-Size="11px" Font-Names="Verdana,Arial,Helvetica,sans-serif"
           BorderColor="Silver" BorderStyle="Solid" BackColor="White" CustomRules="overflow:auto;">
           <Padding Left="2px"></Padding>
          </FilterDropDownStyle>
          <FilterHighlightRowStyle ForeColor="White" BackColor="#151C55"></FilterHighlightRowStyle>
         </FilterOptionsDefault>
                        </DisplayLayout>
                    </igtbl:UltraWebGrid>
                    <asp:Label ID="oldLbl" runat="server"></asp:Label>
                    <asp:Label ID="newLbl" runat="server"></asp:Label>
                </td>
                <td>
                    &nbsp;</td>
            </tr>
            <tr>
                <td class="style1">
                    <asp:Label ID="lblFrm" runat="server" Text="From:"></asp:Label>
                    <igsch:WebDateChooser ID="frmWebDateChooser" runat="server">
                        <CalendarLayout NextMonthImageUrl="ig_cal_blueN0.gif"
                            PrevMonthImageUrl="ig_cal_blueP0.gif" ShowMonthDropDown="False"
                            ShowYearDropDown="False" TitleFormat="Month">
                            <CalendarStyle Font-Bold="False" Font-Italic="False" Font-Overline="False"
                                Font-Strikeout="False" Font-Underline="False" BackColor="#CCDDFF"
                                BorderColor="SteelBlue" BorderStyle="Solid" BorderWidth="1px"
                                Font-Names="Verdana" Font-Size="9pt">
                            </CalendarStyle>
                            <DayHeaderStyle BackColor="#E0EEFF" Font-Bold="True" Font-Size="8pt"
                                ForeColor="#8080A0" Height="1pt">
                            <BorderDetails ColorBottom="LightSteelBlue" StyleBottom="Solid"
                                WidthBottom="1px" />
                            </DayHeaderStyle>
                            <NextPrevStyle BackgroundImage="ig_cal_blue2.gif" />
                            <OtherMonthDayStyle ForeColor="SlateGray" />
                            <SelectedDayStyle BackColor="SteelBlue" />
                            <TitleStyle BackColor="#CCDDFF" BackgroundImage="ig_cal_blue2.gif"
                                Font-Bold="True" Font-Size="10pt" ForeColor="#505080" Height="18pt" />
                            <TodayDayStyle BackColor="#E0EEFF" />
                            <FooterStyle BackgroundImage="ig_cal_blue1.gif" Font-Size="8pt"
                                ForeColor="#505080" Height="16pt">
                            <BorderDetails ColorTop="LightSteelBlue" StyleTop="Solid" WidthTop="1px" />
                            </FooterStyle>
                        </CalendarLayout>
                    </igsch:WebDateChooser>
                </td>
                <td>
                    <asp:Label ID="lblTo" runat="server" Text=" To: "></asp:Label>
                    <igsch:WebDateChooser ID="ToWebDateChooser" runat="server" Value="">
                        <CalendarLayout NextMonthImageUrl="ig_cal_blueN0.gif"
                            PrevMonthImageUrl="ig_cal_blueP0.gif" ShowMonthDropDown="False"
                            ShowYearDropDown="False" TitleFormat="Month">
                            <CalendarStyle Font-Bold="False" Font-Italic="False" Font-Overline="False"
                                Font-Strikeout="False" Font-Underline="False" BackColor="#CCDDFF"
                                BorderColor="SteelBlue" BorderStyle="Solid" BorderWidth="1px"
                                Font-Names="Verdana" Font-Size="9pt">
                            </CalendarStyle>
                            <DayHeaderStyle BackColor="#E0EEFF" Font-Bold="True" Font-Size="8pt"
                                ForeColor="#8080A0" Height="1pt">
                            <BorderDetails ColorBottom="LightSteelBlue" StyleBottom="Solid"
                                WidthBottom="1px" />
                            </DayHeaderStyle>
                            <NextPrevStyle BackgroundImage="ig_cal_blue2.gif" />
                            <OtherMonthDayStyle ForeColor="SlateGray" />
                            <SelectedDayStyle BackColor="SteelBlue" />
                            <TitleStyle BackColor="#CCDDFF" BackgroundImage="ig_cal_blue2.gif"
                                Font-Bold="True" Font-Size="10pt" ForeColor="#505080" Height="18pt" />
                            <TodayDayStyle BackColor="#E0EEFF" />
                            <FooterStyle BackgroundImage="ig_cal_blue1.gif" Font-Size="8pt"
                                ForeColor="#505080" Height="16pt">
                            <BorderDetails ColorTop="LightSteelBlue" StyleTop="Solid" WidthTop="1px" />
                            </FooterStyle>
                        </CalendarLayout>
                    </igsch:WebDateChooser>
                </td>
                <td>
                </td>
                <td>
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
            </tr>
            <tr>
                <td class="style1">
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
            </tr>
            <tr>
                <td class="style1">
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
                <td>
                    &nbsp;</td>
            </tr>
        </table>
        <div>
       
        </div>
        </form>
    </body>
    </html>

     

    Following code does not work:

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

     

    <%

     

    @ Register TagPrefix="igtbl" Namespace="Infragistics.WebUI.UltraWebGrid" Assembly="Infragistics2.WebUI.UltraWebGrid.v7.3, Version=7.3.20073.1053, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    %>

    <%

     

    @ Register TagPrefix="igsch" Namespace="Infragistics.WebUI.WebSchedule" Assembly="Infragistics2.WebUI.WebDateChooser.v7.3, Version=7.3.20073.1053, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"

    %>

    <%

     

    @ Page Language="vb" AutoEventWireup="false" Codebehind="frmPOsAndLabels.aspx.vb" Inherits="mercurywebpack.frmPOsAndLabels"

    %>

    <!

     

     

    DOCTYPE HTML PUBLIC

    "-//W3C//DTD HTML 4.0 Transitional//EN">

    <

     

     

    html

    >

     

     

    <head

    >

     

     

    <title>POs & Labels</title

    >

     

     

    <meta content="Microsoft Visual Studio .NET 7.1" name

    ="GENERATOR"/>

     

     

    <meta content="Visual Basic .NET 7.1" name

    ="CODE_LANGUAGE"/>

     

     

    <meta content="JavaScript" name

    ="vs_defaultClientScript"/>

     

     

    <meta content="http://schemas.microsoft.com/intellisense/ie5" name

    ="vs_targetSchema"/>

     

     

    <link title="WPCSS" href="styles.css" type="text/css" rel

    ="stylesheet"/>

     

     

    <script type

    ="text/javascript">

    <!--

     

     

    var

    objRequest;

     

     

    var

    grid;

     

     

    function

    adjustDateRange()

    {

     

     

    var DtRangVal = document.forms[0].radDocDateRange

    //document.getElementById("radDocDateRange");

     

     

    var fromDate = igdrp_getComboById('txtFromDate'

    );

     

     

    var toDate = igdrp_getComboById('txtToDate'

    );

     

     

     

    var toDt = document.getElementById("TxtToDt"

    ).value;

     

     

    var

    selectedFromDate = fromDate.getValue();

     

     

    var

    selectedToDate = toDate.getValue();

     

     

    //alert(DtRangVal[1].checked);

     

     

    if

    (DtRangVal[1].checked)

    {

    toDate.setValue(selectedFromDate);

    }

     

     

    else

    {

     

     

    if

    (toDt.length > 0)

    {

    fromDate.setValue(document.getElementById(

     

    "txtFrmDt"

    ).value);

    toDate.setValue(document.getElementById(

     

    "TxtToDt"

    ).value);

    }

     

     

    else

    {

     

     

    //alert('SelectedFromDate is null');

    fromDate.setValue(document.getElementById(

     

    "txtFrmDt"

    ).value);

    toDate.setValue(document.getElementById(

     

    "TxtToDt"

    ).value);

    }

    }

    }

     

     

    function

    grdPO_AfterRowActivateHandler(gridName, rowId)

    {

     

     

    var r = rowId.split("_"

    );

     

     

    var

    rowIndex = r[2];

     

     

    var

    row = igtbl_getRowById(rowId);

     

     

    var POText = document.getElementById("txtPONumber"

    );

     

     

    var grid = igtbl_getGridById("grdPO"

    );

     

     

    var

    col = igtbl_getElementById(grid.Bands[0].Columns[0].Id);

     

     

    var

    filValue = row.getCell(0).getValue();

     

     

    if

    (window.XMLHttpRequest)

    {

    objRequest =

     

    new

    XMLHttpRequest();

    }

     

     

    else if

    (window.ActiveXObject)

    {

    objRequest =

     

    new ActiveXObject("Microsoft.XMLHTTP"

    );

    }

     

     

    // This is the method that Infragistics recommends to apply a grid

     

     

    // filter. It getts pretty messy when you have more than 1 Query String

     

     

    // which is the case when you go out to a "child window"

     

     

    var url = window.document.URLUnencoded + "?PONumber="

    + filValue;

    objRequest.onreadystatechange = ProcessResponse;

     

     

    if(objRequest!=null

    )

    {

    objRequest.open(

     

    "POST", url, true

    );

     

     

    //alert(url);

    }

    objRequest.send(

     

    null

    );

    }

     

     

    function

    ProcessResponse()

    {

     

     

    // If the request has been processed completely

     

     

    if

    (objRequest.readyState == 4)

    {

     

     

    // See if was successful

     

     

    if

    (objRequest.status == 200)

    {

     

     

    // Get the grid object, and call its built-in AJAX request function to make it load its first page

     

     

    // after the filter has been completed

    grid = igtbl_getGridById(

     

    "grdPOItem"

    );

    grid.invokeXmlHttpRequest(grid.eReqType.Page,grid,1);

    }

     

     

    else

    {

     

     

    // If the AJAX call was not sucessful, inform the user

    alert(

     

    "Filter Not Processed Sucessfully"

    );

     

     

    //alert(objRequest.responseText);

    }

    }

    }

    function

     

     

    grdPOItem_MouseOutHandler(gridName, id, objectType){

     

     

    //Add code to handle your event here.

    window.status =

     

    ""

    ;

    }

    function

     

     

    check4fullPONumber(){

     

     

    //alert('Checking PO');

     

     

    var POText = document.getElementById("txtPONumber"

    ).value;

     

     

    var fromDate = igdrp_getComboById('txtFromDate'

    );

     

     

    var toDate = igdrp_getComboById('txtToDate'

    );

     

     

    var

    selectedFromDate = fromDate.getValue();

     

     

    var

    selectedToDate = toDate.getValue();

     

     

     

     

    //alert(POText);

     

     

    if

    (POText.length == 10)

    {

    fromDate.setValue(

     

    ""

    );

    toDate.setValue(

     

    ""

    );

    }

     

     

    else

    {

     

     

    if (selectedFromDate != null

    )

    {

     

     

    if (selectedFromDate.length == 0)

    //it was erased

    {

    fromDate.setValue(document.getElementById(

     

    "txtFrmDt"

    ).value);

    toDate.setValue(document.getElementById(

     

    "TxtToDt"

    ).value);

    }

    }

     

     

    else

    {

     

     

    //alert('SelectedFromDate is null');

    fromDate.setValue(document.getElementById(

     

    "txtFrmDt"

    ).value);

    toDate.setValue(document.getElementById(

     

    "TxtToDt"

    ).value);

    }

    }

    }

     

    -->

     

     

    </script

    >

     

     

    <script type="text/javascript">

    <!--

    function

     

     

    grdPOItem_AfterXmlHttpResponseProcessed(gridName){

     

     

    //igtbl_setActiveRow("grdPOItem",igtbl_getElementById("grdPOItem_r_0"));

    grid = igtbl_getGridById(

     

    "grdPOItem"

    );

     

     

    var

    count = grid.Rows.length;

     

     

    var foundOne = false

    ;

     

     

    for

    (i=0; i<count; i++)

    {

     

     

    //get the row object from the grid object from row number

     

     

    var

    row = grid.Rows.getRow(i);

     

     

    var

    val = row.getCell(31).getValue();

     

     

    //alert(val);

     

     

    if (val == "Y"

    )

    {

    foundOne =

     

    true

    ;

     

     

    //exit for;

    }

    }

     

     

    if

    (foundOne)

    {

    document.getElementById(

     

    "btnMultiPack").disabled = false

    ;

    document.getElementById(

     

    "btnClearMultiPack").disabled = false

    ;

    }

     

     

    else

    {

    document.getElementById(

     

    "btnMultiPack").disabled = true

    ;

    document.getElementById(

     

    "btnClearMultiPack").disabled = true

    ;

    }

     

     

    //var col = igtbl_getElementById(grid.Bands[0].Columns[30].Value);

     

     

    //alert("Col Val.: " + col);

    igtbl_selectRow(

     

    "grdPOItem", "grdPOItem_r_0", true

    );

    }

    function

     

     

    grdPOItem_OnMouseOver(gridName, cellId){

     

     

    //Find and Set next editable cell and set it active

     

     

    var

    myGrid = igtbl_getGridById(gridName);

     

     

    var

    row = igtbl_getRowById(cellId);

     

     

    var

    cell = igtbl_getCellById(cellId);

     

     

    var

    k;

     

     

    var

    newcell;

     

     

    var

    i = cell.Index;

     

     

    var

    strIsEditable;

    strKey =row.Band.Columns[i].Key;

     

     

    if (strKey == "item"

    )

    {

    cell.Element.style.cursor =

     

    "hand"

    ;

     

     

    /*cell.Element.style.color = "red"*/

     

     

    var cellPoNumber = null

    ;

     

     

    var cellPoSoldTo = null

    ;

     

     

    var cellPoShipTo = null

    ;

     

     

    var cellPoPlantTo = null

    ;

     

     

     

    if(row.getCellFromKey("CompanyCode") != null

    )

    {

    cellPoSoldTo = igtbl_getCellById(row.getCellFromKey(

     

    "CompanyCode"

    ).Id);

    }

     

     

     

    if(row.getCellFromKey("CustomerShipToID") != null

    )

    {

    cellPoShipTo = igtbl_getCellById(row.getCellFromKey(

     

    "CustomerShipToID"

    ).Id);

    }

     

     

     

    if(row.getCellFromKey("plant") != null

    )

    {

    cellPoPlantTo = igtbl_getCellById(row.getCellFromKey(

     

    "plant"

    ).Id);

    }

     

     

     

    if(row.getCellFromKey("poNumber") != null

    )

    {

    cellPoNumber = igtbl_getCellById(row.getCellFromKey(

     

    "poNumber"

    ).Id);

    }

     

     

     

     

    if((cellPoNumber != null) && (cellPoSoldTo !=null) && (cellPoShipTo !=null) && (cellPoPlantTo!=null

    ))

    {

     

     

    var shipTo = "null"

    ;

     

     

    var plant = "null"

    ;

     

     

    var poItem = null

    ;

    poItem = cell.Element.innerText;

     

     

    if (cell.Element.innerText !=null

    )

    {

     

     

    var

    length = cell.Element.innerText.length;

    poItem = cell.Element.innerText.substring(0,length-1);

    }

     

     

    if(cellPoShipTo.Element.innerText != null

    )

    {

    shipTo = cellPoShipTo.Element.innerText;

    }

     

     

     

    if(cellPoPlantTo.Element.innerText != null

    )

    {

    plant = cellPoPlantTo.Element.innerText;

    }

     

     

     

    var status = "https://www.nikeconnect.com/Mercurywebpack/frmPoItemDetails.aspx?poNumber=" + cellPoNumber.Element.innerText + "&poItem=" + poItem + "&poSoldTo=" + cellPoSoldTo.Element.innerText + "&poShipTo=" + shipTo +"&poPlant="

    + plant;

    window.status = status;

    }

     

     

    else

    {

    window.status=

     

    ""

    ;

    }

     

    }

     

     

    else if(strKey == "material"

    )

    {

    cell.Element.style.cursor =

     

    "hand"

    ;

     

     

    /*cell.Element.style.color = "red"*/

    window.status =

     

    "https://www.nikeconnect.com/Mercurywebpack/frmMaterialList.aspx?FromPage=PolabelsPage&material="

    + cell.Element.innerText;

    }

     

     

    else

    {

    window.status=

     

    ""

    ;

    }

     

     

    }

    -->

     

    </script

    >

     

     

    </head

    >

     

     

    <body MS_POSITIONING

    ="GridLayout">

     

     

    <form id="Form1" method="post" runat

    ="server">

     

     

    <asp:label id="lblFactoryCd" style="Z-INDEX: 129; LEFT: 10px; POSITION: absolute; TOP:

    17px"

     

     

    runat="server" width="80px" CssClass="CssXSText"> Factory Cd:</asp:label

    >

     

     

    <asp:textbox id="txtFctyCd"

     

     

    style="Z-INDEX: 128; LEFT: 8px; POSITION: absolute; TOP: 30px" tabindex

    ="1"

     

     

    runat="server" width="40px"></asp:textbox

    >

     

     

    <igsch:webdatechooser id="txtToDate" style="Z-INDEX: 126; LEFT: 223px; POSITION: absolute; TOP:

    65px"

     

     

    tabindex="10" runat="server" Height="13px" width="107px" CssClass="CssNormal"

     

     

    NullDateLabel=" " ForeColor="Black" BorderColor="Silver" BorderWidth

    ="1px"

     

     

    BorderStyle="Inset" Text

    ="Null">

     

     

    <CalendarLayout TitleFormat="Month" ShowYearDropDown="False" PrevMonthImageUrl

    ="ig_cal_silverP0.gif"

     

     

    ShowMonthDropDown="False" NextMonthImageUrl

    ="ig_cal_silverN0.gif">

     

     

    <FooterStyle Height="16pt" Font-Size="8pt" ForeColor="#707377" BackgroundImage="ig_cal_silver1.gif"></FooterStyle

    >

     

     

    <SelectedDayStyle ForeColor="White" BackColor="#888990"></SelectedDayStyle

    >

     

     

    <OtherMonthDayStyle ForeColor="#888B90"></OtherMonthDayStyle

    >

     

     

    <NextPrevStyle BackgroundImage="ig_cal_silver2.gif"></NextPrevStyle

    >

     

     

    <CalendarStyle BorderWidth="1px" Font-Size="9pt" Font-Names="Verdana" BorderColor="Gray" BorderStyle

    ="Solid"

     

     

    ForeColor="#404050" BackColor="#EFF6F8"></CalendarStyle

    >

     

     

    <TodayDayStyle ForeColor="Black" BackColor="#D0D2D6"></TodayDayStyle

    >

     

     

    <DayHeaderStyle Height="1pt" Font-Size="8pt" Font-Bold="True" ForeColor="White" BackColor="#9A98AE"></DayHeaderStyle

    >

     

     

    <TitleStyle Height="18pt" Font-Size="10pt" Font-Bold="True" ForeColor="#303040" BackgroundImage

    ="ig_cal_silver2.gif"

     

     

    BackColor="#D8E0E2"></TitleStyle

    >

     

     

    </CalendarLayout

    >

     

     

    </igsch:webdatechooser><asp:button id="btnClearMultiPack" style="Z-INDEX: 124; LEFT: 288px; POSITION: absolute; TOP:

    480px"

     

     

    tabindex="10" runat="server" width="120px" CssClass="cssxsButton" Text="Clear Multi-Pack Selections"></asp:button><asp:button id="btnLabels" style="Z-INDEX: 123; LEFT: 528px; POSITION: absolute; TOP:

    480px"

     

     

    tabindex="11" runat="server" width="124px" CssClass="cssxsButton" Text="Build Cartons &amp; Print Labels"></asp:button><asp:button id="btnMultiPack" style="Z-INDEX: 122; LEFT: 160px; POSITION: absolute; TOP:

    480px"

     

     

    tabindex="9" runat="server" width="120px" CssClass="cssxsButton" Text="Find Items to Multi-Pack"></asp:button

    >

     

     

    <asp:label id="Label12"

     

     

    style="Z-INDEX: 121; LEFT: 225px; POSITION: absolute; TOP: 18px" runat

    ="server"

     

     

    width="96px" CssClass="CssXSText">Item (optional):</asp:label

    >

     

     

    <asp:label id="Label8"

     

     

    style="Z-INDEX: 116; LEFT: 24px; POSITION: absolute; TOP: 265px" runat

    ="server"

     

     

    width="64px" CssClass="CssXSText">PO Items:</asp:label

    >

     

     

    <asp:label id="Label7"

     

     

    style="Z-INDEX: 115; LEFT: 12px; POSITION: absolute; TOP: 79px" runat

    ="server"

     

     

    width="32px" CssClass="CssXSText">PO's:</asp:label><asp:panel id="Panel4" style="Z-INDEX: 113; LEFT: 0px; POSITION: absolute; TOP: 504px" runat

    ="server"

     

     

    Height="24px" width="859px" BorderColor="#FF8000" BorderWidth="2px" BorderStyle="Solid" BackColor

    ="#404040">

     

     

    <asp:label id="lblStatus" style="Z-INDEX: 101; LEFT: 72px; POSITION: absolute; TOP: 4px" runat

    ="server"

     

     

    width="544px" Height="13px" CssClass="CssXSTextWhite" ForeColor="White" BackColor="#404040">Please enter your search criteria and click Search button.</asp:label

    >

     

     

    <asp:TextBox id="txtCurrentPage" style="Z-INDEX: 102; LEFT: 20px; POSITION: absolute; TOP:

    0px"

     

     

    runat="server" width="40px" Height="18px" CssClass="cssTitleXSBlack">Hints:</asp:TextBox

    >

     

     

    <asp:Label id="lblDateTime" style="Z-INDEX: 101; LEFT: 656px; POSITION: absolute; TOP:

    4px"

     

     

    runat="server" width="193px" CssClass="CssXSTextWhite">Date/Time: March 24, 05 - 12:03 PM</asp:Label

    >

     

     

    </asp:panel><asp:label id="Label1"

     

     

    style="Z-INDEX: 101; LEFT: 6px; POSITION: absolute; TOP: 2px" runat

    ="server"

     

     

    Height="16px" width="304px" CssClass="CssXSText">Search by PO Number and/or PO Doc Date:</asp:label

    >

     

     

    <asp:label id="Label2"

     

     

     

    style="Z-INDEX: 103; LEFT: 72px; POSITION: absolute; TOP: 18px; width: 126px;"

     

     

    runat="server" CssClass="CssXSText">PO/Ref. PO No: (Partial)</asp:label

    >

     

     

    <asp:textbox id="txtPONumber" style="Z-INDEX: 104; LEFT: 72px; POSITION: absolute; TOP: 30px; width: 112px;

    "

     

     

    tabindex="1" runat="server" MaxLength="10"></asp:textbox

    >

     

     

    <asp:textbox id="txtPOItem" style="Z-INDEX: 105; LEFT: 223px; POSITION: absolute; TOP: 30px; right: 489px;

    "

     

     

    tabindex="2" runat="server" width="64px"></asp:textbox

    >

     

     

    <asp:label id="Label3"

     

     

    style="Z-INDEX: 106; LEFT: 73px; POSITION: absolute; TOP: 52px" runat

    ="server"

     

     

    width="92px" CssClass="CssXSText">PO Doc Date</asp:label

    >

     

     

    <asp:label id="Label4"

     

     

     

    style="Z-INDEX: 107; LEFT: 46px; POSITION: absolute; TOP: 67px; right: 927px;" runat

    ="server"

     

     

    CssClass="CssXSText" Visible="False">From</asp:label

    >

     

     

    <asp:label id="Label5"

     

     

     

     

    style="Z-INDEX: 108; LEFT: 198px; POSITION: absolute; TOP: 70px; height: 13px;" runat

    ="server"

     

     

    CssClass="CssXSText">To</asp:label><asp:label id="Label10"

     

     

    style="Z-INDEX: 117; LEFT: 447px; POSITION: absolute; TOP: 30px" runat

    ="server"

     

     

    width="110px" CssClass="CssXSText">PO Doc Dates</asp:label

    >

     

     

    <asp:radiobuttonlist id="radDocDateRange" style="Z-INDEX: 118; LEFT: 559px; POSITION: absolute; TOP: 25px; width: 108px;

    "

     

     

    tabindex="5" runat="server" Height="8px" CssClass="CssXSText"

     

     

    RepeatDirection

    ="Horizontal">

     

     

    <asp:ListItem Value="Range">Range</asp:ListItem

    >

     

     

    <asp:ListItem Value="Single" Selected="True">Single</asp:ListItem

    >

     

     

    </asp:radiobuttonlist

    >

     

     

    <asp:label id="lblShowShipped" style="Z-INDEX: 119; LEFT: 446px; POSITION: absolute; TOP:

    48px"

     

     

    runat="server" width="110px" CssClass="CssXSText">Show Shipped Items?</asp:label

    >

     

     

    <asp:radiobuttonlist id="radIncludeShipped" style="Z-INDEX: 120; LEFT: 560px; POSITION: absolute; TOP: 44px; width: 89px;

    "

     

     

    tabindex="6" runat="server" Height="8px" CssClass="CssXSText"

     

     

    RepeatDirection

    ="Horizontal">

     

     

    <asp:ListItem Value="Yes">Yes </asp:ListItem

    >

     

     

    <asp:ListItem Value="No" Selected="True">No</asp:ListItem

    >

     

     

    </asp:radiobuttonlist><asp:label id="Label6"

     

     

    style="Z-INDEX: 110; LEFT: 446px; POSITION: absolute; TOP: 68px" runat

    ="server"

     

     

    width="110px" CssClass="CssXSText">Show Items w/0 Qty?</asp:label

    >

     

     

    <asp:radiobuttonlist id="radIncludeZeros" style="Z-INDEX: 111; LEFT: 560px; POSITION: absolute; TOP: 63px; width: 89px;

    "

     

     

    tabindex="7" runat="server" Height="8px" CssClass="CssXSText"

     

     

    RepeatDirection

    ="Horizontal">

     

     

    <asp:ListItem Value="Yes">Yes</asp:ListItem

    >

     

     

    <asp:ListItem Value="No" Selected="True">No</asp:ListItem

    >

     

     

    </asp:radiobuttonlist

    >

     

     

    <asp:button id="btnSearch" style="Z-INDEX: 109; LEFT: 712px; POSITION: absolute; TOP:

    61px"

     

     

    tabindex="8" runat="server" width="88px" CssClass="cssButton" Text="Search"></asp:button

    >

     

     

    <igtbl:ultrawebgrid id="grdPO"

     

     

    style="Z-INDEX: 100; LEFT: 8px; POSITION: absolute; TOP: 94px; height: 160px;"

     

     

    runat="server" width="849px" ImageDirectory="/ig_common/Images/"

     

     

    Height

    ="168px">

     

     

    <Bands

    >

     

     

    <igtbl:UltraGridBand

    >

    <

     

     

    AddNewRow Visible="NotSet" View="NotSet"></AddNewRow

    >

     

     

    </igtbl:UltraGridBand

    >

     

     

    </Bands

    >

     

     

    <DisplayLayout UseFixedHeaders="True" AllowSortingDefault="OnClient" RowHeightDefault="20px" Version

    ="3.00"

     

     

    SelectTypeRowDefault="Single" HeaderClickActionDefault="SortMulti" BorderCollapseDefault

    ="Separate"

     

     

    AllowColSizingDefault="Free" EnableInternalRowsManagement="True" Name="grdPO" TableLayout

    ="Fixed"

     

     

    CellClickActionDefault

    ="RowSelect">

     

     

    <AddNewBox BoxStyle-BorderWidth="1px" BoxStyle-BorderStyle="Solid" BoxStyle-BackColor

    ="LightGray"

     

     

    BoxStyle-BorderDetails-ColorTop="White"

     

     

    BoxStyle-BorderDetails-WidthLeft="1px" BoxStyle-BorderDetails-WidthTop

    ="1px"

     

     

    BoxStyle-BorderDetails-ColorLeft="White">

    <

     

     

    BoxStyle BackColor="LightGray" BorderWidth="1px" BorderStyle

    ="Solid">

    <

     

     

    BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px"></BorderDetails

    >

    </

     

     

    BoxStyle

    >

     

     

    </AddNewBox

    >

     

     

    <HeaderStyleDefault BorderColor="Black" BorderStyle="Solid" HorizontalAlign="Left" ForeColor

    ="Black"

     

     

    BackColor

    ="LightGray">

     

     

    <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails

    >

     

     

    </HeaderStyleDefault

    >

     

     

    <FrameStyle width="849px" Cursor="Default" BorderWidth="1px" Font-Size="8pt" Font-Names

    ="Verdana"

     

     

    BorderColor="#999999" BorderStyle="Solid" BackColor="#F3F3F6" Height="168px"></FrameStyle

    >

     

     

    <FilterOptionsDefault

    >

     

     

    <FilterDropDownStyle width="200px" BorderWidth="1px" Font-Size="11px" Font-Names

    ="Verdana,Arial,Helvetica,sans-serif"

     

     

    BorderColor="Silver" BorderStyle="Solid" BackColor="White" CustomRules

    ="overflow:auto;">

     

     

    <Padding Left="2px"></Padding

    >

     

     

    </FilterDropDownStyle

    >

     

     

    <FilterHighlightRowStyle ForeColor="White" BackColor="#151C55"></FilterHighlightRowStyle

    >

     

     

    <FilterOperandDropDownStyle BorderWidth="1px" Font-Size="11px" Font-Names

    ="Verdana,Arial,Helvetica,sans-serif"

     

     

    BorderColor="Silver" BorderStyle="Solid" BackColor="White" CustomRules

    ="overflow:auto;">

     

     

    <Padding Left="2px"></Padding

    >

     

     

    </FilterOperandDropDownStyle

    >

     

     

    </FilterOptionsDefault

    >

     

     

    <FooterStyleDefault BorderWidth="1px" BorderStyle="Solid" BackColor

    ="LightGray">

     

     

    <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails

    >

     

     

    </FooterStyleDefault

    >

     

     

    <ClientSideEvents AfterRowActivateHandler="grdPO_AfterRowActivateHandler"></ClientSideEvents

    >

     

     

    <ActivationObject BorderStyle="Dotted" BorderWidth="" BorderColor="Black"></ActivationObject

    >

     

     

    <Images></Images

    >

     

     

    <EditCellStyleDefault BorderWidth="0px" BorderStyle="None"></EditCellStyleDefault

    >

     

     

    <SelectedRowStyleDefault ForeColor="White" BackColor="#0A246A"></SelectedRowStyleDefault

    >

     

     

    <RowAlternateStyleDefault BackColor

    ="Lavender">

     

     

    <Padding Left="3px"></Padding

    >

     

     

    <BorderDetails ColorTop="255, 255, 192" ColorLeft="255, 255, 192"></BorderDetails

    >

     

     

    </RowAlternateStyleDefault

    >

     

     

    <RowStyleDefault BorderWidth="1px" Font-Size="8pt" Font-Names="Verdana" BorderColor="Gray" BorderStyle

    ="Solid"

     

     

    BackColor

    ="#C7D5E8">

     

     

    <Padding Left="3px"></Padding

    >

     

     

    <BorderDetails ColorTop="White" WidthLeft="0px" WidthTop="0px" ColorLeft="White"></BorderDetails

    >

     

     

    </RowStyleDefault

    >

     

     

    </DisplayLayout

    >

     

     

    </igtbl:ultrawebgrid><igtbl:ultrawebgrid id="grdPOItem"

     

     

    style="Z-INDEX: 114; LEFT: 8px; POSITION: absolute; TOP: 281px" runat

    ="server"

     

     

    Height="192px" width="849" ImageDirectory="/ig_common/Images/" EnableViewState="False"

     

     

    Browser="Xml" onpageindexchanged

    ="grdPOItem_PageIndexChanged">

     

     

    <Bands

    >

     

     

    <igtbl:UltraGridBand

    >

    <

     

     

    AddNewRow Visible="NotSet" View="NotSet"></AddNewRow

    >

     

     

    </igtbl:UltraGridBand

    >

     

     

    </Bands

    >

     

     

    <DisplayLayout UseFixedHeaders="True" StationaryMargins="HeaderAndFooter" AllowSortingDefault

    ="OnClient"

     

     

    RowHeightDefault="20px" Version="3.00" SelectTypeRowDefault="Extended" RowsRange="1000" HeaderClickActionDefault

    ="SortMulti"

     

     

    BorderCollapseDefault="Separate" AllowColSizingDefault="Free"

     

     

    EnableInternalRowsManagement="True" LoadOnDemand="Xml" Name="grdPOItem" TableLayout

    ="Fixed">

     

     

    <AddNewBox BoxStyle-BorderWidth="1px" BoxStyle-BorderStyle="Solid" BoxStyle-BackColor

    ="LightGray"

     

     

    BoxStyle-BorderDetails-ColorTop="White"

     

     

    BoxStyle-BorderDetails-WidthLeft="1px" BoxStyle-BorderDetails-WidthTop

    ="1px"

     

     

    BoxStyle-BorderDetails-ColorLeft="White">

    <

     

     

    BoxStyle BackColor="LightGray" BorderWidth="1px" BorderStyle

    ="Solid">

    <

     

     

    BorderDetails ColorLeft="White" ColorTop="White" WidthLeft="1px" WidthTop="1px"></BorderDetails

    >

    </

     

     

    BoxStyle

    >

     

     

    </AddNewBox

    >

     

     

    <HeaderStyleDefault BorderColor="Black" BorderStyle="Solid" HorizontalAlign="Left" ForeColor

    ="Black"

     

     

    BackColor

    ="LightGray">

     

     

    <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails

    >

     

     

    </HeaderStyleDefault

    >

     

     

    <FrameStyle width="849px" Cursor="Default" BorderWidth="1px" Font-Size="8pt" Font-Names

    ="Verdana"

     

     

    BorderColor="#999999" BorderStyle="Solid" BackColor="#F3F3F6" Height="192px"></FrameStyle

    >

     

     

    <

     

     

    Images ImageDirectory="/ig_common/Images/"></Images

    >

     

     

    <FooterStyleDefault BorderWidth="1px" BorderStyle="Solid" BackColor

    ="LightGray">

     

     

    <BorderDetails ColorTop="White" WidthLeft="1px" WidthTop="1px" ColorLeft="White"></BorderDetails

    >

     

     

    </FooterStyleDefault

    >

     

     

    <ClientSideEvents AfterXmlHttpResponseProcessed="grdPOItem_AfterXmlHttpResponseProcessed" MouseOverHandler

    ="grdPOItem_OnMouseOver"

     

     

    MouseOutHandler="grdPOItem_MouseOutHandler"></ClientSideEvents

    >

     

     

    <ActivationObject BorderStyle="Dotted" BorderWidth="" BorderColor="Black"></ActivationObject

    >

     

     

    <Images></Images

    >

     

     

    <Pager AllowPaging

    ="True">

     

     

    </Pager

    >

     

     

    <EditCellStyleDefault BorderWidth="0px" BorderStyle="None"></EditCellStyleDefault

    >

     

     

    <SelectedRowStyleDefault ForeColor="White" BackColor="#0A246A"></SelectedRowStyleDefault

    >

     

     

    <RowAlternateStyleDefault BackColor

    ="Lavender">

     

     

    <Padding Left="3px"></Padding

    >

     

     

    <BorderDetails ColorTop="255, 255, 192" ColorLeft="255, 255, 192"></BorderDetails

    >

     

     

    </RowAlternateStyleDefault

    >

     

     

    <RowStyleDefault BorderWidth="1px" Font-Size="8pt" Font-Names="Verdana" BorderColor="Gray" BorderStyle

    ="Solid"

     

     

    BackColor

    ="#C7D5E8">

     

     

    <Padding Left="3px"></Padding

    >

     

     

    <BorderDetails ColorTop="White" WidthLeft="0px" WidthTop="0px" ColorLeft="White"></BorderDetails

    >

     

     

    </RowStyleDefault

    >

     

     

    <FilterOptionsDefault

    >

     

     

    <FilterDropDownStyle width="200px" BorderWidth="1px" Font-Size="11px" Font-Names

    ="Verdana,Arial,Helvetica,sans-serif"

     

     

    BorderColor="Silver" BorderStyle="Solid" BackColor="White" CustomRules

    ="overflow:auto;">

     

     

    <Padding Left="2px"></Padding

    >

     

     

    </FilterDropDownStyle

    >

     

     

    <FilterHighlightRowStyle ForeColor="White" BackColor="#151C55"></FilterHighlightRowStyle

    >

     

     

    </FilterOptionsDefault

    >

     

     

    </DisplayLayout

    >

     

     

    </igtbl:UltraWebGrid><asp:dropdownlist id="ddlLabels" style="Z-INDEX: 127; LEFT: 688px; POSITION: absolute; TOP:

    480px"

     

     

    runat="server" width="168px"></asp:dropdownlist

    >

     

     

    <p

    >

     

     

    <asp:TextBox ID="txtFrmDt" runat="server"

     

     

     

    style="Z-INDEX: 127; LEFT: 0px; POSITION: absolute; TOP: 530px; width: 1px; right: 623px;"

     

     

    BorderStyle="None" ForeColor="White"></asp:TextBox

    >

     

     

    <asp:TextBox ID="TxtToDt" runat="server"

     

     

     

    style="Z-INDEX: 127; LEFT: 5px; POSITION: absolute; TOP: 530px; width: 1px;"

     

     

    BorderStyle="None" ForeColor="White"></asp:TextBox

    >

     

     

    </p

    >

     

     

    <igsch:webdatechooser id="txtFromDate" style="Z-INDEX: 125; LEFT: 72px; POSITION: absolute; TOP:

    65px"

     

     

    tabindex="10" runat="server" Height="19px" width="107px" CssClass="CssNormal"

     

     

    NullDateLabel=" " ForeColor="Black" BorderColor

    ="Silver"

     

     

    BorderWidth="1px" BorderStyle="Inset" Text

    ="Null">

     

     

    <CalendarLayout TitleFormat="Month" ShowYearDropDown="False" PrevMonthImageUrl

    ="ig_cal_silverP0.gif"

     

     

    ShowMonthDropDown="False" NextMonthImageUrl

    ="ig_cal_silverN0.gif">

     

     

    <FooterStyle Height="16pt" Font-Size="8pt" ForeColor="#707377" BackgroundImage="ig_cal_silver1.gif"></FooterStyle

    >

     

     

    <SelectedDayStyle ForeColor="White" BackColor="#888990"></SelectedDayStyle

    >

     

     

    <OtherMonthDayStyle ForeColor="#888B90"></OtherMonthDayStyle

    >

     

     

    <NextPrevStyle BackgroundImage="ig_cal_silver2.gif"></NextPrevStyle

    >

     

     

    <CalendarStyle BorderWidth="1px" Font-Size="9pt" Font-Names="Verdana" BorderColor="Gray" BorderStyle

    ="Solid"

     

     

    ForeColor="#404050" BackColor="#EFF6F8"></CalendarStyle

    >

     

     

    <TodayDayStyle ForeColor="Black" BackColor="#D0D2D6"></TodayDayStyle

    >

     

     

    <DayHeaderStyle Height="1pt" Font-Size="8pt" Font-Bold="True" ForeColor="White" BackColor="#9A98AE"></DayHeaderStyle

    >

     

     

    <TitleStyle Height="18pt" Font-Size="10pt" Font-Bold="True" ForeColor="#303040" BackgroundImage

    ="ig_cal_silver2.gif"

     

     

    BackColor="#D8E0E2"></TitleStyle

    >

     

     

    </CalendarLayout

    >

     

     

    </igsch:webdatechooser

    >

     

     

    </form

    >

     

     

    </body

    >

    </

     

     

    html

    >

    Please help me out... 

Reply Children