Re: reading drop down through properties file

2008-09-16 Thread Dave Newton
--- On Tue, 9/16/08, sam thothi <[EMAIL PROTECTED]> wrote: > my question is i have month.properties file, where i have declared > > months = "january,february, march.." > january = "monday,tuesday , wednesday" > > in the first drop down i want to load months, and after > selecting for example jan

Re: reading drop down through properties file

2008-09-16 Thread sam thothi
Dave, my question is i have month.properties file, where i have declared months = "january,february, march.." january = "monday,tuesday , wednesday" in the first drop down i want to load months, and after selecting for example january then i want to load monday , tuesday and wednesday. I want

Re: reading drop down through properties file

2008-09-16 Thread Dave Newton
--- On Tue, 9/16/08, sam thothi wrote: > Do any one has a sample code to do similar thing. public class TheAction extends ActionSupport { private String[] options; public String[] getOptions() { return options; } public String execute() { String[] options = StringUtils.split(ge

Re: reading drop down through properties file

2008-09-16 Thread sam thothi
Do any one has a sample code to do similar thing. thanks in advance for your help. On Tue, Sep 16, 2008 at 12:59 PM, Dave Newton <[EMAIL PROTECTED]> wrote: > --- On Tue, 9/16/08, sam thothi wrote: > > Can any one please let me know how to read a drop down > > through properties file I have two d

Re: reading drop down through properties file

2008-09-16 Thread Dave Newton
--- On Tue, 9/16/08, sam thothi wrote: > Can any one please let me know how to read a drop down > through properties file I have two drop downs. I need to > read the drop down values through the properties file . There are a few options; the easiest is probably to get the property in your action,