Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6375821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T01:39:55+00:00 2026-05-25T01:39:55+00:00

Here is the code I am using: <xsl:template match=Row[position() = 1]> <li style=width: 650px;

  • 0

Here is the code I am using:

<xsl:template match="Row[position() = 1]">
  <li style="width: 650px; float: left; list-style: none outside none;">
    <ul class="liste1">
      <xsl:if test="@Style='NewsCustomTemplate'">
        <li>
          <div style="width:640px; color:#40494f; font-size:12">
            <b style="color:black">
              <xsl:value-of select="./@Title"/>
            </b>
            <xsl:choose>
              <xsl:when test="string-length(./@Description)&gt;300">
                <xsl:value-of disable-output-escaping="yes" select="substring(./@Description,1,300)"/>...
              </xsl:when>
              <xsl:otherwise>
                <xsl:value-of disable-output-escaping="yes" select="./@Description"/>
              </xsl:otherwise>
            </xsl:choose>
          </div>
          <div>
            <a class="" href="#" target="" title="">
              read more
            </a>
          </div>
        </li>
        <xsl:if test="following-sibling::*[1]">
          <li>
            <div style="width:640px; color:#40494f; font-size:12">
              <b style="color:black">
                <xsl:value-of select="following-sibling::*[1]/@Title"/>
              </b>
              <xsl:choose>
                <xsl:when test="string-length(following-sibling::*[1]/@Description)&gt;300">
                  <xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[1]/@Description,1,300)"/>...
                </xsl:when>
                <xsl:otherwise>
                  <xsl:value-of disable-output-escaping="yes" select="following-sibling::*[1]/@Description"/>
                </xsl:otherwise>
              </xsl:choose>
            </div>
            <div>
              <a class="" href="#" target="" title="">
                read more
              </a>
            </div>
          </li>
        </xsl:if>
        <xsl:if test="following-sibling::*[2]">
          <li>
            <div style="width:640px; color:#40494f; font-size:12">
              <b style="color:black">
                <xsl:value-of select="following-sibling::*[2]/@Title"/>
              </b>
              <xsl:choose>
                <xsl:when test="string-length(following-sibling::*[2]/@Description)&gt;300">
                  <xsl:value-of disable-output-escaping="yes" select="substring(following-sibling::*[2]/@Description,1,300)"/>...
                </xsl:when>
                <xsl:otherwise>
                  <xsl:value-of disable-output-escaping="yes" select="following-sibling::*[2]/@Description"/>
                </xsl:otherwise>
              </xsl:choose>
            </div>
            <div>
              <a class="" href="#" target="" title="">
                read more
              </a>
            </div>
          </li>
        </xsl:if>
      </xsl:if>
      <xsl:if test="@Style='AgendaCustomTemplate'">
      </xsl:if>
    </ul>
  </li>
</xsl:template>

The problem of my code is that I am reusing almost the exact same code three times:

  • one for the current item “.”
  • one for the first sibling “following-sibling::*[1]”
  • one for the second sibling “following-sibling::*[2]”

I would like to have sort of a generic template to perform this part for the node LOCATIONX:

<li>
  <div style="width:640px; color:#40494f; font-size:12">
    <b style="color:black">
      <xsl:value-of select="LOCATIONX/@Title"/>
    </b>
    <xsl:choose>
      <xsl:when test="string-length(LOCATIONX/@Description)&gt;300">
        <xsl:value-of disable-output-escaping="yes" select="substring(LOCATIONX/@Description,1,300)"/>...
      </xsl:when>
      <xsl:otherwise>
        <xsl:value-of disable-output-escaping="yes" select="LOCATIONX/@Description"/>
      </xsl:otherwise>
    </xsl:choose>
  </div>
  <div>
    <a class="" href="#" target="" title="">
      read more
    </a>
  </div>
</li>

Does anybody know if such a thing is possible in XSLT ? Or do I have to keep my code duplicated ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T01:39:55+00:00Added an answer on May 25, 2026 at 1:39 am

    Start by getting rid of that disable-output-escaping=”yes”. It was probably put in there as magic fairy-dust by someone who doesn’t know what it means. Chances are it’s not needed, in which case removing it does no harm; if the transformation doesn’t work without it then there is something badly wrong with the design.

    As for your question, put the common code inside

    <xsl:template match="Row" mode="m">...</xsl:template>
    

    and then do

    <xsl:template match="Row[position()=1]">
      <xsl:apply-templates select="." mode="m"/>
      <xsl:apply-templates select="following-sibling::Row[1]" mode="m"/>
      <xsl:apply-templates select="following-sibling::Row[2]" mode="m"/>
    </xsl:template>
    

    or more simply

    <xsl:template match="Row[position()=1]">
      <xsl:apply-templates select=".|following-sibling::Row[3 > position()]" mode="m"/>
    </xsl:template>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

here is a code : using System; using Nemerle.Collections; using Nemerle.Text; //using Nemerle.Utility; using
I am using pseudo-code here, but this is in JavaScript. With the most efficient
Having this code: using (BinaryWriter writer = new BinaryWriter(File.Open(ProjectPath, FileMode.Create))) { //save something here
I'm looking for something like break for loops. Here's some example code (using Symfony's
I'm using some code from here to determine when determining when the last finger
Im using Doctrine and i dont quite understand this code here: $this->hasColumn('id', 'integer', 8,
I have a piece of code here that does not work despite me using
Here is the current code I am using: <UserControl xmlns=http://schemas.microsoft.com/winfx/2006/xaml/presentation xmlns:x=http://schemas.microsoft.com/winfx/2006/xaml x:Class=ButtonPrototype.MainPage Width=640 Height=480>
Here's a version of the code I'm using, stripped down to just the parts
I'm using an HTML sanitizing whitelist code found here: http://refactormycode.com/codes/333-sanitize-html I needed to add

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.