Re: Struts 2.1.x trunk "Could not find property" in tests and running ..

2007-11-12 Thread fergunet
But... how to remove them?? It prints thousand of warnings on my app. Jeromy Evans - Blue Sky Minds wrote: > > >> This is somehow connected to my question before on a migration guide, is > it needed? > > There's no migration guide from 2.0.x to 2.1.x. I agree one will be > needed because yo

How to print from 1 to 10 with struts2 tags?

2007-08-30 Thread fergunet
Hi all! I need to paginate some things and it would be useful to have the number of the pages like that: [first/previous] 1,2,3,_4_, 5, 6 [next/last] The _4_ is the actual_page. Yeah, is like the display:table of displaytag but made by myself. I've the stuff between the [] made, and I only need

Re: How to know if an element of a list belongs to another list using Struts2 tags?

2007-08-16 Thread fergunet
ious post). ... Ok. Finally I've made it! : ) But every time I want to modify an OGNL variable I have to create an tag. Is it correct? How can I operate with OGNL variables without using this tag? BTW thank you for your response Laurie, I've wrote it in my magic diary ;) Laurie Har

How to know if an element of a list belongs to another list using Struts2 tags?

2007-08-13 Thread fergunet
Hi all! I'm iterating over two list, and I need to shown if an element of the second list belongs to the first. Something like that: iterator list1 print list1.actualElement.attributes... iterator list2 if list2.element == list1.actualElement print "yes" else pri

Re: How to list a property in a display:table (Struts 2)

2007-08-08 Thread fergunet
er that you can refer to the row from struts tags by using #attr.row > > so the iterator should now works like this: > > > > On 8/8/07, fergunet <[EMAIL PROTECTED]> wrote: >> >> >> Hi all! >> >> I've created a display table to show a

How to list a property in a display:table (Struts 2)

2007-08-08 Thread fergunet
Hi all! I've created a display table to show a list of things and their attributes. But one of those attributes is another list of objects. I don't know how to print their names. Let's see what I have: