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

Re: xslt pagnation help...

Subject: Re: xslt pagnation help...
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Tue, 13 Aug 2002 13:01:00 +0200
xsl onpick
Why don't you use simply the $page param and add 1??

<option onpick="#card{$Page + 1}">More</option>

In which way are you calling the next page then? It looks like you need a new request.

Regards,

Joerg

Zoe Peng wrote:
Joerg,

Yes. That's the problem. Thanks.
--Zoe


Sorry, but I don't understand that. Is <option

onpick="#card">More</option>


not enough? Do you need something like "#page0", "#page1" and so on

there?


Joerg

Zoe Peng wrote:

Hi Joerg, Yes. It's pretty much I need for my stylesheet.
position() 0-4 (on page 0)
position 5-10 (on page 1) position 11-15 (on page 2)
The problem: when I click option [More], it needs to link to #card which is from page0 to page1 and so on. The statement I use didn't perform this functionality. Any suggestions? Thanks in advance.
--Zoe




I don't know exactly what your problem is, but I would suggest

merging



the both email message types:

<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
version='1.0' >
<xsl:output doctype-

system='http://www.wapforum.org/DTD/wml_1.1.xml'/>

<!-- declare param -->
<xsl:param name="Page" select="0" />
<xsl:param name="PageSize" select="5" />

<!-- start from here -->
<xsl:template match="/">
<wml>
<card id="message">
<p>
<select name="MAILMSGCONTENT" title="MAILMSGCONTENT">
<xsl:apply-templates select="tm_email_client/email_session_config"/>
<option onpick="#card">More</option>
</select>
<a href="#reply">Select</a>
<anchor>Back<prev/></anchor>
</p>
</card>
</wml>
</xsl:template>


<xsl:template match="email_session_config">
<xsl:for-each select="( user_email_msgs/email_msg | default_email_msgs/email_msg ) [position() > ($Page * $PageSize)] [position() &lt;= $PageSize]">
<option value="{em_msg_subj}">
<xsl:value-of select="em_msg_subj"/>
</option>
</xsl:for-each>
</xsl:template>
</xsl:stylesheet>

--


System Development
VIRBUS AG
Fon  +49(0)341-979-7419
Fax  +49(0)341-979-7409
joerg.heinicke@xxxxxxxxx
www.virbus.de


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.