Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
Dave I have done it. Thank you. Vijay On 5/24/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > You can solve this problem without . Oh, thanks; I thought I had to solve this with I sure am sorry it's taken me so long; I'm a little slow sometime

Re: Problem regarding tag

2007-05-24 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > You can solve this problem without . Oh, thanks; I thought I had to solve this with I sure am sorry it's taken me so long; I'm a little slow sometimes. > If you have any simple solution then let me know ASAP *sigh* Is this for your job? d.

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
Dave You can solve this problem without . If you have any simple solution then let me know ASAP Thank you, Vijay Prajapati On 5/24/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Vijay Prajapati <[EMAIL PROTECTED]> wrote: >> If there are n elements in collection then there >> would be ma

Re: Problem regarding tag

2007-05-24 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: >> If there are n elements in collection then there >> would be many rows and in each rows 5 elements will >> be display. So... do you know of any way in Java to do something every five times through a loop? (I haven't used so I don't know if it's

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
update "#appStatus.index" instead of "#appStatus.incex" On 5/24/07, Vijay Prajapati <[EMAIL PROTECTED]> wrote: Dave, I am here giving my code on JSP. So please try to correct it. I have 7 elements in collection and i have to show 5 elements in one row and rest of the elements in second row. If

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
Dave, I am here giving my code on JSP. So please try to correct it. I have 7 elements in collection and i have to show 5 elements in one row and rest of the elements in second row. If there are n elements in collection then there would be many rows and in each rows 5 elements will be display.

Re: Problem regarding tag

2007-05-24 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > If you have any solution then help me out. Seriously, I think I helped you already. Maybe if you explain where you're having issues coming up with the solution we can work our way through it. d. ___

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
ist Subject: Re: Problem regarding tag Dave I want to print pattern which i have drawn in my first mail through tag. As per your link it will shows 1,2,3,4,5 in row but i want to draw it in row and column wise. Vijay On 5/24/07, Dave Newton <[EMAIL PROTECTED]> wrote: > > ---

RE: Problem regarding tag

2007-05-24 Thread Al Sutton
Ever get the feeling someones homework is due in or a deadline is looming? -Original Message from Vijay Prajapati- . . . . > Please reply me ASAP - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
Dave, I have 10 element in list() and i want to retrieve and to show them through tag on JSP. But not in one row but in given below style. 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 ---

RE: Problem regarding tag

2007-05-24 Thread Al Sutton
ECTED] Sent: 24 May 2007 13:48 To: Struts Users Mailing List Subject: Re: Problem regarding tag Dave I want to print pattern which i have drawn in my first mail through tag. As per your link it will shows 1,2,3,4,5 in row but i want to draw it in row and column wise. Vijay On 5/24/07,

Re: Problem regarding tag

2007-05-24 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > I want to print pattern which i have drawn in my > first mail through tag. > As per your link it will shows 1,2,3,4,5 in row > but i want to draw it in row and column wise. So how might you go about solving that? You have #stat.index. You have t

Re: Problem regarding tag

2007-05-24 Thread Vijay Prajapati
Dave I want to print pattern which i have drawn in my first mail through tag. As per your link it will shows 1,2,3,4,5 in row but i want to draw it in row and column wise. Vijay On 5/24/07, Dave Newton <[EMAIL PROTECTED]> wrote: --- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > Can you pl

Re: Problem regarding tag

2007-05-24 Thread Dave Newton
--- Vijay Prajapati <[EMAIL PROTECTED]> wrote: > Can you please send sample code to print matrix of > 10 element from one Look at the "status" attribute. http://struts.apache.org/2.x/docs/iterator.html See the last example regarding "#stat.index". d.

Problem regarding tag

2007-05-23 Thread Vijay Prajapati
Hi All, 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 ro

Re: Regarding tag libraries

2007-04-23 Thread Antonio Petrelli
2007/4/23, Kapil Sharma <[EMAIL PROTECTED]>: Hello to all, I am very new to struts. I am using struts 1.0. I have developed a small application. Curious, you're new to Struts and you are using the 1.0 version? Therefore i would like to know the libraries present in the best appliation. I he

Regarding tag libraries

2007-04-23 Thread Kapil Sharma
Hello to all, I am very new to struts. I am using struts 1.0. I have developed a small application. I just want to know the best tag libraries to get the elements out of collection. e.g Arraylist I m now using a lots of for loop inside the <% %> tags in jsp. But do you think it is a nice way.

Re: regarding tag

2006-03-06 Thread Niall Pemberton
On 3/6/06, Anjishnu Bandyopadhyay <[EMAIL PROTECTED]> wrote: > > Hi all, > > I am using the Struts resource bundle to display internationalized > messages in my JSP, > > Eg. > > Here, the message is displayed according to the current locale. > > Now, I want to display a "French" string irrespectiv

regarding tag

2006-03-06 Thread Anjishnu Bandyopadhyay
Hi all, I am using the Struts resource bundle to display internationalized messages in my JSP, Eg. Here, the message is displayed according to the current locale. Now, I want to display a "French" string irrespective of the current locale. Can you tell me how to implement this? is