Re: Joining list with OGNL

2007-09-16 Thread Jan Röhrich
> ( ticketStates.add(0,new MyObject(-1,"All")), ticketStates ) This does the job. Thanks. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Joining list with OGNL

2007-09-14 Thread cilquirm
I don't believe OGNL supports concatenation of lists, but such functionality could be achieved using chained subexpressions : ( ticketStates.add(0,new MyObject(-1,"All")), ticketStates ) which would insert the new object into the head of the list, and then return the ticketStates object as the r