Re: [S2] needs refresh to work properly

2007-05-24 Thread Vijay Prajapati
Laurie, I have done it. Thank you very much. I would like to appreciate your efforts done for me. I would like to work with you to solve problems. If possible then we would meet u through net. Vijay On 5/25/07, Laurie Harper <[EMAIL PROTECTED]> wrote: Perhaps something like the following,

Re: [S2] needs refresh to work properly

2007-05-24 Thread Dale Newfield
Laurie Harper wrote: Perhaps something like the following, making use of the status info [1] exposed by s:iterator: With a tweak that prevents that if from firing if there are a multiple of 3 entries in yourList: test="#s.index % 3 == 0 && !#s.last" -Dale

Re: [S2] needs refresh to work properly

2007-05-24 Thread Dave Newton
--- Laurie Harper <[EMAIL PROTECTED]> wrote: > Perhaps something like the following, making use of > the status info [1] exposed by s:iterator: >:| d. Take the Internet to Go: Yahoo!Go puts the Interne

Re: [S2] needs refresh to work properly

2007-05-24 Thread Laurie Harper
Perhaps something like the following, making use of the status info [1] exposed by s:iterator: L. [1] http://struts.apache.org/2.x/struts2-core/apidocs/org/apache/struts2/views/jsp/IteratorStatus.html Vijay Prajapati wrote: Dave, Can you please send sampl

Re: [S2] needs refresh to work properly

2007-05-23 Thread Vijay Prajapati
Dave, Can you please send sample code to print matrix of 10 element from one list through iterator tag in Struts 2.0.6? I am here giving sample output.. 1 2 3 --- in 1st row of HTML table 4 5 6 --- in 2nd row of same HTML table 7 8 9 --- in 3rd row

Re: [S2] needs refresh to work properly

2007-05-23 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > Is there Nested Iterator tag in Struts 2.0.6? I don't believe that one is necessary; you should be able to arbitrarily nest tags (I have several cases where I do that with no issues). One thing to note is that if you need to access an outer-iterat

Re: [S2] needs refresh to work properly

2007-05-23 Thread Vijay Prajapati
Hi, Is there Nested Iterator tag in Struts2.0.6? I want to show matrix of list value through Iterator tag in HTML Table. So is it possible? I am here giving example which shows values in table form from list. List imageList= new ArrayList(10); images should show like below in HTML table.

Re: [S2] needs refresh to work properly

2007-05-07 Thread Adam Ruggles
do this remove edit This is assuming you have a "public getClients()" method that returns an array/list of objects that have "public getName()" and "public getDescription" methods. Diego Yasuhiko Kurisaki wrote: Well, using the property tag i got no out

Re: [S2] needs refresh to work properly

2007-05-07 Thread Diego Yasuhiko Kurisaki
Well i spent a hour to realize that when i used the property tag and go no output, i was mistyping the name :/ it worked using just the name of the method that i want. Thanks On 5/7/07, Diego Yasuhiko Kurisaki <[EMAIL PROTECTED]> wrote: Well, using the property tag i got no output at all.

Re: [S2] needs refresh to work properly

2007-05-07 Thread Diego Yasuhiko Kurisaki
Well, using the property tag i got no output at all. I'll try to use the webwork stuff. Is this really how it works? On 5/7/07, Adam Ruggles <[EMAIL PROTECTED]> wrote: have you tried using the property tag instead? Diego Yasuhiko Kurisaki wrote: > Hi i've written the following in a JSP. >

Re: [S2] needs refresh to work properly

2007-05-07 Thread Adam Ruggles
have you tried using the property tag instead? value="ca.name" /> Diego Yasuhiko Kurisaki wrote: Hi i've written the following in a JSP. ${ca.name} ${ca.description} remove edit I have a method in my action called getClients. Whe

[S2] needs refresh to work properly

2007-05-07 Thread Diego Yasuhiko Kurisaki
Hi i've written the following in a JSP. ${ca.name} ${ca.description} remove edit I have a method in my action called getClients. When i first load the page, the iterator tag generates the exact number of rows of the list that is re