This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Problems using the Count function


I'm using the xalan parser and I'm having problems with the count function.


> I have a stylesheet that includes the following ...
> 
> 	<xsl:value-of select="count( //user__common__profile)"/>
> 
> When I invoke the tranformation from the command line using... 
> 
> 	java org.apache.xalan.xslt.Process -IN Users.xml -XSL Users.xsl -OUT
> Users.out
> 
>  it works perfectly but if I try to invoke it with a html page using...
> 
> <script language="JavaScript">
> <!--
>     function transform()
>     {
> 	document.all.pleaseWait.style.display = "";
>     	var target = document.xslControl.getHtmlText();  
>     	insertHTML.outerHTML = target;  
> 	document.all.pleaseWait.style.display = "none";
>     }
> // -->
> </script>
> 
> 	<div id="pleaseWait">
> 		<br/><br/>Generating output, one moment please...
> 	</div>
> 
> 	<div id="insertHTML">
> 	</div>
> 	
>    <applet
>       name="xslControl"
>       code="org.apache.xalan.xslt.client.XSLTProcessorApplet.class"
>       archive="InterLinx/xalan.jar,InterLinx/xerces.jar"
>       height="0"
>       width"0">
>       <param name="documentURL" value="InterLinx/users.xml"/>  <!--default
> setting-->
>       <param name="styleURL" value="Users.xsl"/> <!--doesn't change-->
>    </applet>
> 
> no output appears. If I remove the count function it works perfectly.
> Is the count function not supported in the applet or am I doing something
> wrong ?
> 
> regards
> Richard Sargeant 


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]