xsl-list
[Top] [All Lists]

Re: [xsl] Value of variable not appearing in the <xsl:otherwise> of xml:choose

2021-09-21 13:46:32
On Tue, 2021-09-21 at 17:12 +0000, Terry Ofner tdofner(_at_)gmail(_dot_)com 
wrote:

        <xsl:variable name="part3ID">
            <xsl:value-of select="current-
group()[self::div[@class='analyze_visual']]/@nextExposID"></xsl:value-
of>
        </xsl:variable>

Does it  work if you rewrite this as

 <xsl:variable name="part3ID" as="xs:string"
  select="current-
group()[self::div[@class='analyze_visual']]/@nextExposID" />

and


                <part num="3">
                    <xsl:attribute name=“globalNum">
                        <xsl:value-of select="$part3ID"/>
                    </xsl:attribute>

as

<part num="3" globalNum="{$part3ID}">

?


When you put content inside a variable without an assigned type, it
becomes a document with a document node.

Liam


-- 
Liam Quin, https://www.delightfulcomputing.com/
Available for XML/Document/Information Architecture/XSLT/
XSL/XQuery/Web/Text Processing/A11Y training, work & consulting.
Barefoot Web-slave, antique illustrations:  http://www.fromoldbooks.org
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>