Hi,
I am using Infragistics UltraWebGrid (Version=7.3.20 073.1053). Following is the design code that is being used:
However, after implementing the UltraWebGrid in the above manner, paging is not happening.
A separate method for InitializeDataS ource 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="X ml" successful work in this page? Partial postback is an absolute necessary for this grid on this page.
I am using Infragistics UltraWebGrid (Version=7.3.20 073.1053). Following is the design code that is being used:
Code:
</ 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">
A separate method for InitializeDataS ource 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="X ml" successful work in this page? Partial postback is an absolute necessary for this grid on this page.