[x]
Posted via EE Mobile

Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again.

01/18/2006 at 11:24AM PST, ID: 21701430
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.0

XSL sortorder issue

Asked by peterxlane in Extensible Markup Language (XML)

Tags: xsl, sort, sortorder

I need a fresh outlook on a problem I have been working on.  I am very new to XSL, so I am hoping that I am just missing something obvious. I have a node containing images.  Each image has a sortorder used to determine the order of the image in a slideshow.  I am now working on an interface to allow a user to reorder these images.  I have a function that will update the sortorder attribute of two images when passed the two valid sortorder attribute values. So for my sample xml shown, I could reorder the first and second images by passing the following values:

ReorderImages("1", "60")

I would accomplish this by passing my values in the QueryString on an ASP page like this:

page.asp?op=reorder&oldsortorder=1&newsortorder=60

This would simply swap the two values on the sortorder attributes.  This all works fine.  My problem is creating the hyperlinks on my XSL stylesheet, so that they have the correct hyperlinks based on the order of the sortorder attribute. If I do something like this:


<xsl:for-each select="images/image">
<xsl:sort data-type="number" select="@sortorder" order="ascending" />

            <a>
                  <xsl:attribute name="href">
                        <xsl:text>?op=reorder</xsl:text>
                        <xsl:text>&amp;oldsortorder=</xsl:text>
                        <xsl:value-of select="@sortorder" />
                        <xsl:text>&amp;newsortorder=</xsl:text>
                        <xsl:value-of select="'previous image sortorder'" />                        
                  </xsl:attribute>
            </a>
            
            <a>
                  <xsl:attribute name="href">
                        <xsl:text>?op=reorder</xsl:text>
                        <xsl:text>&amp;oldsortorder=</xsl:text>
                        <xsl:value-of select="@sortorder" />
                        <xsl:text>&amp;newsortorder=</xsl:text>
                        <xsl:value-of select="'next image sortorder'" />                              
                  </xsl:attribute>
            </a>            

</xsl:for-each>

                                    
</xsl:stylesheet>



I end up having problems capturing the next or previous sortorder attribute.  When I use something like:  following-sibling, it does not look at the xsl:sort that I am applying, it simply looks at the next node as it appears in my XML file. I could write a more complex function that would do all the work behind the scenes to update the sortorder of two nodes but my objective for this project has been to learn more about XSL, so I would really like to accomplish it that way.
[+][-]01/18/06 11:38 AM, ID: 15732253

View this solution now by starting your 30-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Extensible Markup Language (XML)
Tags: xsl, sort, sortorder
Sign Up Now!
Solution Provided By: mshogren
Participating Experts: 1
Solution Grade: A
 
 
[+][-]01/18/06 11:48 AM, ID: 15732342

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]02/07/06 11:43 AM, ID: 15895731

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 30-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20090824-EE-VQP-74