RE: Question about iterate tag

2001-03-01 Thread Shamdasani Nimmi-ANS004
% TR TDFONT face = "Arial"supplier.getCode() %/FONT/TD TDFONT face = "Arial"%= supplier.getName() %/FONT/TD/FONT/TD TDFONT face = "Arial"%= supplier.getCountryName() %/FONT/TD /TR % } % /TABLE -Original Message- From: Craig R. McClanahan [mailto:[EMAIL PROTE

RE: Question about iterate tag

2001-03-01 Thread Matt Ho
) { SupplierBean supplier = (SupplierBean) e.nextElement(); % TR TDFONT face = "Arial"supplier.getCode() %/FONT/TD TDFONT face = "Arial"%= supplier.getName() %/FONT/TD/FONT/TD TDFONT face = "Arial"%= supplier.getCountryName() %/FONT/TD /TR

RE: Question about iterate tag

2001-03-01 Thread Shamdasani Nimmi-ANS004
hashTable.elements(); e.hasMoreElements(); ) { SupplierBean supplier = (SupplierBean) e.nextElement(); % TR TDFONT face = "Arial"supplier.getCode() %/FONT/TD TDFONT face = "Arial"%= supplier.getName() %/FONT/TD/FONT/TD TDFONT face = "Arial"%= suppl

Re: Question about iterate tag

2001-03-01 Thread Craig R. McClanahan
Shamdasani Nimmi-ANS004 wrote: Craig, I did try this way but it still does not work. What does "does not work" mean? What error messages or stack traces are you getting? Since supplier.value is of type SupplierBean, do I have to specify that anywhere? No ... bean introspection does not

RE: Question about iterate tag

2001-03-01 Thread Shamdasani Nimmi-ANS004
ned tag or anything. I appreciate all the help I received :) -Nimmi -Original Message- From: Shamdasani Nimmi-ANS004 [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 11:04 AM To: '[EMAIL PROTECTED]' Subject: RE: Question about iterate tag Craig, I did try this way but it still

Re: Question about iterate tag

2001-03-01 Thread Nick Pellow
1:04 AM To: '[EMAIL PROTECTED]' Subject: RE: Question about iterate tag Craig, I did try this way but it still does not work. Since supplier.value is of type SupplierBean, do I have to specify that anywhere? -- jsp:useBean id="u

Re: Question about iterate tag

2001-02-28 Thread Craig R. McClanahan
Shamdasani Nimmi-ANS004 wrote: Hi, Could someone please tell me what I am doing wrong below: user is a bean in session scope in my JSP and its getSuppliers() method returns a hashtable where keys are Suppliers Ids and elements are Supplier beans. logic:iterate collection="%=

Question about iterate tag

2001-02-27 Thread Shamdasani Nimmi-ANS004
Hi, Could someone please tell me what I am doing wrong below: user is a bean in session scope in my JSP and its getSuppliers() method returns a hashtable where keys are Suppliers Ids and elements are Supplier beans. logic:iterate collection="%= user.getSuppliers() %" id="supplier"