Re: Need help to understand tapestry tree component

2013-08-27 Thread Giridhar reddy
Thanks for the quick reply. I will go through these links. On Tue, Aug 27, 2013 at 1:39 PM, Lance Java wrote: > I've never fully understood the use case for the select event. I've always > seen select done by putting a in the Tree's > parameter. > > Here's a couple of examples: > http://tapes

Need help to understand tapestry tree component

2013-08-27 Thread Giridhar reddy
Hi All, I need some info on how we differentiate b/w the expansion of a node and selection of a node. Could you please give me any references or info on this Thanks, Giri

Re: Need help: in displaying text with html character entities and new line

2013-08-23 Thread Giridhar reddy
nt, InsertText worked for me (it replaced \n with . After this replacement, I used raw=false to get the desired output. On Fri, Aug 23, 2013 at 5:07 PM, Thiago H de Paula Figueiredo < thiag...@gmail.com> wrote: > On Thu, 22 Aug 2013 23:04:26 -0300, Giridhar reddy < > giri.kaila...@gma

Need help: in displaying text with html character entities and new line

2013-08-22 Thread Giridhar reddy
Hello, I have the input string which contains "price range<10-100>\n least price = 20" I need the output as: price range<10-100> least price=20 I tried jwcid=@InsertText. But, it is still printing the output in one line as "price range<10-100>\nleastprice=20" If I keep raw=true, I am not gettin