Re: cryptic error messages

2013-07-06 Thread Paul BorČ™
As Per you're HTML you're component path is repeatingDocTypes:docTypeName ie: > > Orders Where repeatingDocTypes is a repeating view and its children are numbered (1,2,3,4..). Yet you added docTypeName and repeatingDocRef. Now, to make it work try to use inline panels or separate

Re: cryptic error messages [SOLVED]

2013-07-03 Thread Sven Meier
Hi, the dot is a leftover from the days when Wicket used '.' to separate component paths. I've fixed the exception message to use PATH_SEPARATOR, i.e. ':' Thanks Sven On 07/03/2013 01:17 PM, Lucio Crusca wrote: I've found that between this line of code: RepeatingView rv = new Repeating

Re: cryptic error messages [SOLVED]

2013-07-03 Thread Lucio Crusca
I've found that between this line of code: >RepeatingView rv = new RepeatingView("repeatingDocTypes"); and these ones: >for (...) > addDocTypeBox(rv, docs); I actually had an extra rv.newChildId() hidden in calls which obviously bumped the next id value... Still I can't understand

cryptic error messages

2013-07-03 Thread Lucio Crusca
Hi *, I have the following markup snippet: Orders which is bound to this code snippet: [...] RepeatingView rv = new RepeatingView("repeatingDocTypes"); for (...) addDocTypeBox(rv, docs); private void addDoc