I need to add in front of every select value this hard coded string mobile/
this select hyperlink from xml:
<a href="{Hyperlink/a/@href}" name="xslt">
I tried this but it only gets value from xslt expression:
<a href="'mobile/' + {Hyperlink/a/@href}"> XXX </a>
Try using
concat()Also,
<a href="mobile/{Hyperlink/a/@href}"> XXX </a>should’ve worked for you originally. Are you sure that your current context would haveHyperlinkas a child?