RE: Need help editing a Map plz.

2009-01-19 Thread Jeremy Thomerson
Maybe try a RepeatingView of some sort (ListView?) over new ArrayList(map.keySet())... Jeremy Thomerson http://www.wickettraining.com -- sent from a wireless device -Original Message- From: Ned Collyer ned.coll...@gmail.com Sent: Monday, January 19, 2009 6:14 PM To:

RE: Need help editing a Map plz.

2009-01-19 Thread Ned Collyer
Got it licked - stuffed up the editors. Specifically I neglected convertInput because I happen to be an idiot. Thanks JT - I have the keyset stuff down already ;) I was just wondering why my constraints were instantiated, but when they were submitted their inner detail was nulled out. Makes

RE: Need help editing a Map plz.

2009-01-19 Thread Ned Collyer
No - i officially don't know what's wrong :) This is my snippet - ListString list = new ArrayListString(model.getObject().getConstraints().keySet()); // display any existing constraints form.add(new ListViewString(fields, list) { protected void

RE: Need help editing a Map plz.

2009-01-19 Thread Ned Collyer
Bleh - its one of those days. Changed the base of the form fields from FormComponentPanel back to Panel - and bobs ur uncle. Sorry for the list noise (recovering from holidays still). Ned Collyer wrote: No - i officially don't know what's wrong :) This is my snippet -