Re: 2 iterators on one page problem

2003-07-15 Thread Mykola Ostapchuk
Thanks a lot! With km-nested-v2.03.jar it works fine. Regards, Mykola Ostapchuk - Original Message - From: "Sri Sankaran" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; "Mykola Ostapchuk" <[EMAIL PROTECTED]> Sen

2 iterators on one page problem

2003-07-15 Thread Mykola Ostapchuk
projectsID doesn't have 'projects' property at all... Any suggestions? 1st iteration   2nd iteration   Regards, Mykola Ostapchuk - To unsubscribe,

Iterate over an Iterator question

2003-07-01 Thread Mykola Ostapchuk
Hello, I'm having a problem to iterate with tag. I have an Iterator object "allUsers". Here's my code: In Action class: Iterator allUsers = userBD.selectAllUsers(); request.setAttribute("allUsers", allUsers); When I use Vector object in this case - everything works fine. With Iterator

Iterate over an Iterator question

2003-06-30 Thread Mykola Ostapchuk
Hello, I'm having a problem to iterate with tag. I have an Iterator object "allUsers". Here's my code: In Action class: Iterator allUsers = userBD.selectAllUsers(); request.setAttribute("allUsers", allUsers); When I use Vector object in this case - everything works fine. With Iterator

bean:write Problem

2003-06-26 Thread Mykola Ostapchuk
Hello, I have a problem displaying data with bean:write tag. I simply want to show the list of users. UserVO has property userCountry of type CountryVO. I populate bean "allUsers" and put it into request. On jsp page: When I'm only browsing this list - everything works OK! B

Re: Struts-menu

2003-06-23 Thread Mykola Ostapchuk
Of course, you could allow all roles by using * in web.xml. This is the way > I've done it and it might take a bit to setup, but who has permissions to > see what on a menu rarely changes (at least not on my projects). > > HTH, > > Matt > > -Original Message- &g

Struts-menu

2003-06-23 Thread Mykola Ostapchuk
Hello, I couldn't get any response from Struts-menu mail list, so I'm wandering if somebody here could help me. I'm new to struts-menu. I want to create a role-based expandable menu. I have an existing system with Roles DB table. How can I specify menu permissions for particular Role and save it t

Re: search at nagoya.apache.org

2003-06-22 Thread Mykola Ostapchuk
The same for me... - Original Message - From: "Fedor Smirnoff" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Sunday, June 22, 2003 9:44 PM Subject: search at nagoya.apache.org > Guys, is it just me or search have not been working > fo

DefinitionDispatcherAction question

2003-06-20 Thread Mykola Ostapchuk
Hello, I'm trying to access "home.Page" in tiles definitions using DefinitionDispatcherAction. I call /home.do from browser and receive the next error: "Definition dispatcher action : can't get parameter 'home.Page'." What am I doing wrong? struts-config.xml: tiles-defs.xml:

Re: Tiles question

2003-06-19 Thread Mykola Ostapchuk
in my case. - Original Message - From: "Jason Lea" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Thursday, June 19, 2003 11:26 PM Subject: Re: Tiles question > Mykola Ostapchuk wrote: > > I have request.setAtt

Re: Tiles question

2003-06-19 Thread Mykola Ostapchuk
; Hi, > > The action DoFirst.java isn't putting the userList bean into the request. > > It should be doing something like > > request.setAttribute("userList", userListBean); > > It is also using the 'perform()' method, if you are using the lates

Re: Tiles question

2003-06-19 Thread Mykola Ostapchuk
t" <[EMAIL PROTECTED]>; "Mykola Ostapchuk" <[EMAIL PROTECTED]> Sent: Thursday, June 19, 2003 10:12 PM Subject: Re: Tiles question > Did you add Tiles plugin in your struts-config.xml ? > > > - Original Message - > From: "Mykola Ostapchuk&quo

Tiles question

2003-06-19 Thread Mykola Ostapchuk
Hello, I'm new to tiles and can't make it work. I'm trying to display users list (body - users.jsp) and get an error: [ServletException in:/users.jsp] Cannot find bean usersList in scope request' . I'm populating 'usersList' bean and put it into request in my Action class. It displays header and f

Re: Multibox persistence problem

2003-06-18 Thread Mykola Ostapchuk
ECTED]> To: "Struts Users Mailing List" <[EMAIL PROTECTED]> Sent: Wednesday, June 18, 2003 1:58 PM Subject: Re: Multibox persistence problem > I've only been able to make this work w/ session scope. Can you please > post your code so I can see your solution? Thanks

Re: Multibox persistence problem

2003-06-18 Thread Mykola Ostapchuk
d somehow describe the type of the members > of the Collection, and then rebuild the collection on the fly based on > those fields. Perhaps this would make more sense after java 1.5 is > released with support for typed Collections. > > David > > Mykola Ostapchuk wrote: > &

Re:Re: Multibox persistence problem

2003-06-17 Thread Mykola Ostapchuk
the user in the form will appear pre-populated in the form." All the data in tags is pre-populated well. But multibox - not... Any suggestions? - Original Message - From: "Richard Raquepo" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" <[EMA

Multibox persistence problem

2003-06-17 Thread Mykola Ostapchuk
Hi, I'm using multibox to display multiple checkboxes: Everything works fine, the only problem is - when there's a validation error on my form and it's reposted with error messages, it always return all checkboxes unchecked (even if I check some of them before). How could I keep c