RE: JXTemplate question

2012-11-16 Thread Robby Pelssers
What is the actual value of inneritem? A tag? And yes... using XSLT this would have been a breeze ;-) But maybe you use the wrong xpath expression? I'm not sure what the binding returns. Suppose your current xpath looks like /root/tagname Give following a try /root/tagname/text()

Re: JXTemplate question

2012-11-16 Thread Francesco Chicchiriccò
On 16/11/2012 14:32, m...@digikartta.net wrote: Can you help me out with this. This works: input type=text value=#{$inneritem}/input This doesn't textarea#{$inneritem}/textarea Or it does actually work, but the result in a) is xxx and in b) tagnamexxx/tagname What I am doing this

RE: JXTemplate question

2012-11-16 Thread mika
Yes! This one works. #{$inneritem/text()} Thanks Robby! - mika - On Fri, 16 Nov 2012 13:48:27 +, Robby Pelssers robby.pelss...@nxp.com wrote: What is the actual value of inneritem? A tag? And yes... using XSLT this would have been a breeze ;-) But maybe you use the wrong xpath