Re: iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
That is exactly what i need,it works!!! Musachy Barroso wrote: > > html gets escaped by the 'property' tag. hint: read my other hint. > > On Tue, Oct 6, 2009 at 10:05 AM, samsun wrote: >> >> value on value stack are, i think, changed when retreiving >

RE: iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
t; > Regarding the normal JSP behavior you cited: > that's a mystery. Scripting variables don't > magically just decide to surround themselves > with bold tags. ;) > > >> -Original Message- >> From: samsun [mailto:greg.zh...@barcap.com] >&

Re: iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
i got < b > java < / b> back samsun wrote: > > I would like put my question simply like this: > > in jsp, > > <%! String test="java"; %> > <%=test%> > i got bold Java > > try to have same thing fro

strust2 tag question

2009-10-06 Thread samsun
I would like put my question simply like this: in jsp, <%! String test="java"; %> <%=test%> i got bold Java try to have same thing from struts2 i got java back,which is not what i want. here the actual value is sitting from valuestack. -- View this message in context: http://ww

Re: iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
I would like put my question simply like this: in jsp, <%! String test="java"; %> <%=test%> i got bold Java try to have same thing from struts2 i got java back,which is not what i want samsun wrote: > > > > samsun wrote: >&

Re: iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
samsun wrote: > > I have to iterate thru a list of strings, some of the string element > include html tag > like <b>Copmany Names:</b> it print out litterlly like this > Copmany Names:, not the bolded word Company Names: > > here

iterator tag: how to interpret the property value which are html

2009-10-06 Thread samsun
I have to iterate thru a list of strings, some of the string element include html tag like Copmany Names: it print out litterlly like this Copmany Names:, not the bolded word Company Names: here is what the iterate tag look like btw, the CompanyNa

iterator tag: how to set iterate step?

2009-09-24 Thread samsun
I have array to iterate through using iterator tag, for each loop i want to print out pair of array's element the last row could have only one element if the array length is odd. for example, i want to dump arrays into table , each row has two element. arrays {1,2,3,4,5} 1 2 3 4