Re: Tapestry[5] - Select Drop Down in a Grid Component

2008-01-29 Thread Anteneh Bayouh
Thanks Thiago, jobClass is a string object which I declare and generate the getter and setter methods on my page to iterate through the jobClasses list and provide the options for drop down. private String jobClass; For the first case Exception was not happened, A blank value and blank list on

Re: Tapestry[5] - Select Drop Down in a Grid Component

2008-01-29 Thread Thiago HP
On 1/29/08, Anteneh Bayouh <[EMAIL PROTECTED]> wrote: > It is not working! My guess is there might be a conflict between the two > models (employeeModel, which is a BeanModel, and jobClasses model, which is > a SelectModel). How exactly is it not working? Some exception? The dropdown is not being

Re: Tapestry[5] - Select Drop Down in a Grid Component

2008-01-29 Thread Anteneh Bayouh
It is working usign the following fragment code. It is to much code for tapestry. If you have any way of doing this, Using the SelectModel object. Now the jobClasses is a list of a string, public List getJobClasses() { return employeeDao.getJobClasses(); } public boolean getSelectedJob