Problem getting child component in UNIX - AIX

2008-07-09 Thread Eyal Golan
Hello all, We have a weird situation and I hope you could help. This is the line of code: Component c = form.get(PropertyType.SAGE.managedItems:panelXML); We even changed the ':' to Component.PATH_SEPARATOR In windows all is well and we get the child component (that has wicket is panelXML). In

Re: Problem getting child component in UNIX - AIX

2008-07-09 Thread Johan Compagner
Component.PATH_SEPARATOR is hard coded to be : so doing this: Component c = form.get(PropertyType.SAGE.managedItems:panelXML); or this Component c = form.get(PropertyType.SAGE.managedItems + Component.PATH_SEPARATOR+ panelXML); shouldnt matter 1 bit. johan On Wed, Jul 9, 2008 at 9:13 AM,

Re: Problem getting child component in UNIX - AIX

2008-07-09 Thread Eyal Golan
Yes I know. We have looked into the code :) But still, in UNIX we get null. My friend here will try to change the parent's wicket id to be without dots. Thanks On Wed, Jul 9, 2008 at 10:56 AM, Johan Compagner [EMAIL PROTECTED] wrote: Component.PATH_SEPARATOR is hard coded to be : so doing