[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: Paging and Sorting

Subject: RE: Paging and Sorting
From: "Chris Bayes" <chris@xxxxxxxxxxx>
Date: Tue, 9 Oct 2001 00:41:40 +0100
xsl tutorial paging
What do you want? Blood!
You should at least make an attempt at it. Have you tried a < or a >
than?

Ciao Chris

XML/XSL Portal
http://www.bayes.co.uk/xml


> -----Original Message-----
> From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx 
> [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of 
> Katie McNally
> Sent: 08 October 2001 21:51
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: RE:  Paging and Sorting
> 
> 
> The example in the "Paging" tutorial involves XML that 
> contains a series of 
> "page" elements.  Only one "page" is displayed at a time.  I 
> need to display 
> 10 loans at a time, and when the user clicks "Next Page", he 
> needs to be 
> taken to the next set of 10 loans.  How do I go about doing this?
> 
> 
> >From: "Chris Bayes" <chris@xxxxxxxxxxx>
> >Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> >To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx>
> >Subject: RE:  Paging and Sorting
> >Date: Mon, 8 Oct 2001 16:32:54 +0100
> >
> >http://www.bayes.co.uk/xml/index.xml?/xml/tutorial/paging/paging.xml
> >http://www.bayes.co.uk/xml/index.xml?/xml/tutorial/filtering/
> filter.xml
> >
> >Ciao Chris
> >
> >XML/XSL Portal
> >http://www.bayes.co.uk/xml
> >
> >
> > > -----Original Message-----
> > > From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> > > [mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Katie 
> > > McNally
> > > Sent: 08 October 2001 16:05
> > > To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> > > Subject:  Paging and Sorting
> > >
> > >
> > > I would like to incorporate the following two capabilities into a 
> > > page using
> > > XSL: Paging and Sorting.
> > >
> > > Since over 100 loans will be returned in the XML, I would like to 
> > > display ten at a time, and allow the user the ability (through 
> > > links) to go to the
> > > "Next Page" and "Previous Page" of 10 loans, as well as skip
> > > ahead to the
> > > "Last Page" or back to the "First Page" of loans.  In
> > > addition to this
> > > paging functionality, sorting capabilities must also be
> > > available.  Each
> > > column title in the table must be a link, that when clicked,
> > > sorts the table
> > > by that column.  The paging functionality must still be
> > > available.  When the
> > > page first opens it should display the first ten loans,
> > > sorted by Loan
> > > Number.  If the user then selects the "Status Date" column
> > > title link, the
> > > table will sort by Status date, displaying the first ten
> > > loans with the most
> > > recent date.  The user can then page to other loans in the
> > > returned list of
> > > loans.
> > >
> > > Any suggestions for how to do this?
> > >
> > > The Column titles are Loan ID, Borrower Name, Loan Amount, Rate, 
> > > Status, Status Date.  Borrower Last Name value displayed is for
> > > borrower with Rank =
> > > 1.  Rate and Loan Amount are displayed when Selected = True.
> > >
> > > An abbreviated example of the XML:
> > >
> > > <LoanSet>
> > > <Loan>
> > > 	<LoanId>9921234</LoanId>
> > > 	<Status>New</Status>
> > > 	<StatusDate>16-Dec-1999 09:26:14</StatusDate>
> > > 	<LoanBorrowerSet>
> > > 		<Borrower>
> > > 			<Rank>1</Rank>
> > > 			<LastName>Smith</LastName>
> > > 		</Borrower>
> > > 		<Borrower>
> > > 			<Rank>2</Rank>
> > > 			<LastName>Jones</LastName>
> > > 		</Borrower>
> > > 	</LoanBorrowerSet>
> > > 	<LoanScenarioSet>
> > > 		<Scenario>
> > > 			<Selected>True</Selected>
> > > 			<LoanAmount>100000</LoanAmount>
> > > 			<ScenarioDetailSet>
> > > 				<ScenarioDetail>
> > > 					<Rate>7</Rate>
> > > 				</ScenarioDetail>
> > > 			</ScenarioDetailSet>
> > > 		</Scenario>
> > > 		<Scenario>
> > > 			<Selected>False</Selected>
> > > 			<LoanAmount>200000</LoanAmount>
> > > 			<ScenarioDetailSet>
> > > 				<ScenarioDetail>
> > > 					<Rate>6.5</Rate>
> > > 				</ScenarioDetail>
> > > 			</ScenarioDetailSet>
> > > 		</Scenario>
> > > 	</LoanScenarioSet>
> > > </Loan>
> > > <Loan>
> > > 	<LoanId>5256723</LoanId>
> > > 	<Status>New</Status>
> > > 	<StatusDate>18-Mar-1998 02:21:11</StatusDate>
> > > 	<LoanBorrowerSet>
> > > 		<Borrower>
> > > 			<Rank>1</Rank>
> > > 			<LastName>Johnson</LastName>
> > > 		</Borrower>
> > > 		<Borrower>
> > > 			<Rank>2</Rank>
> > > 			<LastName>Douglas</LastName>
> > > 		</Borrower>
> > > 	</LoanBorrowerSet>
> > > 	<LoanScenarioSet>
> > > 		<Scenario>
> > > 			<Selected>True</Selected>
> > > 			<LoanAmount>150000</LoanAmount>
> > > 			<ScenarioDetailSet>
> > > 				<ScenarioDetail>
> > > 					<Rate>6.7</Rate>
> > > 				</ScenarioDetail>
> > > 			</ScenarioDetailSet>
> > > 		</Scenario>
> > > 		<Scenario>
> > > 			<Selected>False</Selected>
> > > 			<LoanAmount>220000</LoanAmount>
> > > 			<ScenarioDetailSet>
> > > 				<ScenarioDetail>
> > > 					<Rate>7</Rate>
> > > 				</ScenarioDetail>
> > > 			</ScenarioDetailSet>
> > > 		</Scenario>
> > > 	</LoanScenarioSet>
> > > </Loan>
> > > </LoanSet>
> > >
> > > Thanks,
> > > Katie
> > >
> > > _________________________________________________________________
> > > Get your FREE download of MSN Explorer at 
> > > http://explorer.msn.com/intl.asp
> > >
> > >
> > >  XSL-List info and
> > > archive:  http://www.mulberrytech.com/xsl/xsl-list
> > >
> > >
> >
> >
> >  XSL-List info and archive:  
> http://www.mulberrytech.com/xsl/xsl-list
> >
> 
> 
> 
> _________________________________________________________________
> Get your FREE download of MSN Explorer at 
> http://explorer.msn.com/intl.asp
> 
> 
>  XSL-List info and 
> archive:  http://www.mulberrytech.com/xsl/xsl-list
> 
> 


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.