hi...

trying this:
<s:doubleselect
name="selectedclient" label="Client and task" listKey="id" listValue="name" list="clients" doubleName="selectedTask" doubleListKey="id" doubleListValue="name" doubleList="tasks" />

on my action i have:

public List<Client> getClients(){
                List<Client> l=new ArrayList<Client>();
                l.add(new Client(1,"Migdal"));
                l.add(new Client(2,"Archive"));
                return l;
        }

public List<Task> getTasks(){
                List<Task> l=new ArrayList<Task>();
                l.add(new Task(1,"Dev"));
                l.add(new Task(2,"Prog"));
                System.out.println(l);
                return l;

        }

on the debugger i can see the getTask being called, however , on the view, it's not being pupoulated.

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to