In my XSL there is an anchor tag. When this anchor tag is clicked I want a JAav function to be executed. This is what I am doing in my XSL
<xsl:stylesheet xmlns:xsl="
http://www.w3.org/1999/XSL/Transform" xmlns:java_func="com.commo
n.utils.SU
tils"
xmlns:java_func_1="com.com
ponents.de
tailedView
.FkDetaile
dView"
extension-element-prefixes
="java_fun
c java_func_1" version="2.0">
...
...
...
<td>
<xsl:for-each select="fb_holder/attached
_files/fil
e_details"
>
<a href="java_func_1:fileView
er('090005
4d8000cf8e
')"><xsl:v
alue-of select="file_name"/></a><b
r/>
</xsl:for-each>
</td>
But upon click it gives an error. Can someone please let me know how to resolve this.