Hi
I've tried the examples which where build with the svn source from 16.02.
the picklist shows the same error. If i select some values and click
submit the values are shown {Selected values: option4, option3, option2,
option}.
if i click submit a second time no values are submitted and I have a
empty right side again {No selected values}.
maybe i fetched a wrong version from svn somehow. I'll try again tomorrow.
regards
stefan
Bruno Aranda wrote:
Can you try to put the sandbox examples [1] in your container and tell
me if the example there works ok? What is your configuarion? I've
always tested the component with linux+firefox.
Regards,
Bruno
[1] /myfaces/tomahawk/sandbox/examples
On 2/16/06, Stefan Lukesch <[EMAIL PROTECTED]> wrote:
Hi,
I've build sandbox from SVN now, since I didn't find a nightly build for
the sandbox.
But I'm afraid the problem is still the same :(
this is how my .jsp looks like:
...
<tr align="center">
<td colspan="2">
<s:selectManyPicklist size="5"
value="#{UserManager.userDetails.addonGroups}">
<f:selectItems
value="#{UserManager.availableGroups}"/>
</s:selectManyPicklist>
</td>
</tr>
...
and my User.java
...
public void setAddonGroups(String[] groups) {
System.out.println("Setting AddonGroups " + groups.length);
_addonGroups = groups;
}
...
Problem is same as before. When I don't touch the picklist no items are
returned.
Is this still a sandbox-bug or do I have one in my source maybe?
regards
stefan
Bruno Aranda wrote:
There was a bug in the picklist which I have fixed now. You can get
the fixed component from the SVN sources or in the next nightly build.
Thanks for reporting!
Bruno
On 2/14/06, Stefan Lukesch <[EMAIL PROTECTED]> wrote:
Hi,
I'm just building a user management interface using myfaces. For
managing the group memberships of a user I'm using the picklist aka
selectManyPickList.
So far it's working fine, but evertime I'm updating the userinformation
without changing something in the picklist, no values are returned by
the picklist (although there values on the ritght side) and therefor my
user is removed from all groups. If I make some changes in the list or
just remove one entry and than add it again it works fine.
Can someone help me out of this problem?
Best regards
Stefan