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
60
Webcombo paging is not working if we put the Webcombo in EditRowTemplate
posted

I am display the webcombo inside the "EditRowTemplate". In this webcombo, I want to display more then 5000 rows. For that i am trying to implement the paging in webcombo by doing following things. But the webcombo is not navigating to the next page when i clicks the 2nd page in the webcombo. please do the needful.

 <RowEditTemplate>

<igcmbo:webcombo id="WebCombo1" CssClass="body_content" runat="server" Version="4.00" DataValueField="Item Number" DataTextField="Item Number" DataSourceID="SqlDataSource3" EnableXmlHTTP="true" BorderWidth="1" BorderStyle="solid" >

<DropDownLayout BorderCollapse="Separate" RowHeightDefault="20px" RowsRange="50" Version="4.00">

<Pager AllowPaging="True" MinimumPagesForDisplay="10" PageSize="15" QuickPages="10" StyleMode="PrevNext" ChangeLinksColor="True"></Pager>

<RowStyle BorderWidth="1px" BorderColor="Gray" BorderStyle="Solid" BackColor="White">

<BorderDetails WidthLeft="0px" WidthTop="0px"></BorderDetails>

</RowStyle>

<SelectedRowStyle ForeColor="White" BackColor="DarkBlue"></SelectedRowStyle>

<HeaderStyle BorderStyle="Solid" BackColor="LightGray">

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

</HeaderStyle>

<FrameStyle Width="325px" Cursor="Default" BorderWidth="2px" Font-Size="10pt" Font-Names="Verdana" BorderStyle="Ridge" BackColor="Silver" Height="130px"></FrameStyle>

</DropDownLayout>

 

</igcmbo:webcombo>

<asp:SqlDataSource ID="SqlDataSource3" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString1 %>"

SelectCommand="Usp_INCA_GetItemNumberLookup" SelectCommandType="StoredProcedure"></asp:SqlDataSource>

</RowEditTemplate>