Hi there ...
I've another question for you.
I have a RestDataSource that is calling some data threw a service that displays some XML. Everything is fine, until I ask a large amount of data.
In the showcase, a sample is provided, I've done the same but my ListGrid doesn't paginate anything.
Here is the XML resulted :
The interesting part is this one :
<startRow>0</startRow>
<endRow>75</endRow>
<totalRows>1448</totalRows>
My listGrid only displays the 75 first result, and does not provide anything to load the next results ... How can I do that?
Thanks for the reply!
I've another question for you.
I have a RestDataSource that is calling some data threw a service that displays some XML. Everything is fine, until I ask a large amount of data.
In the showcase, a sample is provided, I've done the same but my ListGrid doesn't paginate anything.
Here is the XML resulted :
Code:
<response> <status>0</status> <startRow>0</startRow> <endRow>75</endRow> <totalRows>1448</totalRows> <data> <transportResult> <itucode>050424040</itucode> <lastStatus>50</lastStatus> <terminals>202<br/>245<br/>null</terminals> <fullOrEmpty>1</fullOrEmpty> <weights>3156<br/>2800</weights> <statusDate>Thu Feb 26 06:20:04 CET 2009</statusDate> <departureDate>Wed Feb 25 19:11:04 CET 2009</departureDate> <actors>0018210<br/>0018214<br/>0018214</actors> <refNumbers>NON COMMUNIQUEE<br/>NRUNG2057904</refNumbers> <controlNumbers>050061<br/>050061<br/>338749086033</controlNumbers> </transportResult> ... </data>
<startRow>0</startRow>
<endRow>75</endRow>
<totalRows>1448</totalRows>
My listGrid only displays the 75 first result, and does not provide anything to load the next results ... How can I do that?
Thanks for the reply!
Comment