Re: Long[] and selectManyListbox

2005-09-27 Thread Peter Mahoney
I think this is a similar issue to that which I have previously reported as bug MYFACES-583. Hopefully the suggested patches can get applied soon. Peter Richard Wallace wrote: Ok, well what's weird is that I couldn't even do it if I set the return type and parameter type and stuff to

Re: Long[] and selectManyListbox

2005-09-27 Thread Bruno Aranda
This has been fixed now in the SVN! Thanks for reporting! Bruno 2005/9/27, Peter Mahoney [EMAIL PROTECTED]: I think this is a similar issue to that which I have previously reported as bug MYFACES-583. Hopefully the suggested patches can get applied soon. Peter Richard Wallace wrote: Ok,

Long[] and selectManyListbox

2005-09-26 Thread Richard Wallace
Hey all, I'm trying to use a selectManyListbox component on a page to allow the user to select multiple things. The SelectItems are created from a list returned from Hibernate so the value object is of type Long. In my backing bean I'm using the following methods: public Long[]

Re: Long[] and selectManyListbox

2005-09-26 Thread Richard Wallace
Ok, well what's weird is that I couldn't even do it if I set the return type and parameter type and stuff to String[]. It was still giving me the same problems. The only way I could get this to work is by returning an Object[] and in the setter having the parameter be an Object[]. But then