inmethod datagrid: how to contribute?

2009-03-20 Thread Will Jaynes
We have been using the inmethod datagrid in our latest project. (1.4 SNAPSHOT from wicketstuff-core) We have some bugs (or issues, at least) to report and might have some contributions. I don't see a Jira project on the wicketstuff jira nor is there info on the wicketstuff wiki. Is there a way to

Re: DropDownChoice confusion!

2009-03-20 Thread Will Jaynes
Or, another way, IChoiceRendererFixedCharges cr = new IChoiceRendererFixedCharges(){ public Object getDisplayValue(FixedCharges fixedCharges) { return fixedCharges.getDescription() + - + fixedCharges.getValue(); } public String

Re: Trying Hibernate Validator Integration

2009-03-14 Thread Will Jaynes
In the archives, back in 2007, I see a lot of discussion about Hibernate/JPA validator and Wicket, but I can't find if there was any result from those discussions. Did anything come of it? Will On Tue, Mar 10, 2009 at 11:29 AM, taha siddiqi tawushaf...@gmail.comwrote: but then how to get a

Re: Trying Hibernate Validator Integration

2009-03-14 Thread Will Jaynes
in the post ) taha On Sat, Mar 14, 2009 at 6:16 PM, Will Jaynes wjay...@gmail.com wrote: In the archives, back in 2007, I see a lot of discussion about Hibernate/JPA validator and Wicket, but I can't find if there was any result from those discussions. Did anything come of it? Will On Tue

adding multiple onchange behaviors to DDC

2009-03-11 Thread Will Jaynes
I've searched the list for this, but didn't find an answer, at least not a recent one. When I add more than one OnChangeAjaxBehavior to a DropDownChoice, only the last one gets executed. Is that just the way it is? Will

getting the component to which a Behavior is added from with the Behavior

2009-02-27 Thread Will Jaynes
I'm trying to write a class that extends OnChangeAjaxBehavior. Is there a way, in the update method, to get the component to which the behavior has been added? I just don't see how. Should it just be added via the constructor? component.add(new MyOnChangeAjaxBehavior(component)); This doesn't

Re: getting the component to which a Behavior is added from with the Behavior

2009-02-27 Thread Will Jaynes
Will Jaynes wjay...@gmail.com: I'm trying to write a class that extends OnChangeAjaxBehavior. Is there a way, in the update method, to get the component to which the behavior has been added? I just don't see how. Should it just be added via the constructor? component.add(new

Re: inmethod datagrid, ajax interactions between cells

2009-02-26 Thread Will Jaynes
...@gmail.com wrote: I haven't used inmethod datagrid yet but i guess i wont be different with another Wicket model component, so just clear the property of your Underlying model, that should be enough. Will Jaynes-4 wrote: I'm working with the inmethod datagrid. I would like to set up some ajax

inmethod datagrid with a DropDownChoice cell

2009-02-17 Thread Will Jaynes
I'm working with the inmethod datagrid. The grid is editable, and I have it working just as the examples show, with a couple of cells that contain text. As in the examples, clicking on a row changes some cells into TextField components that can be edited. Now I would like to create a cell that

Re: inmethod datagrid, validation, and feedback

2009-02-16 Thread Will Jaynes
On Sun, Feb 15, 2009 at 10:40 PM, Timo Rantalaiho timo.rantala...@ri.fiwrote: On Sun, 15 Feb 2009, Will Jaynes wrote: So, how would one show those error messages? And where would such code get hooked in? I'm not sure about the place but basically you have to add a FeedbackPanel

inmethod datagrid, validation, and feedback

2009-02-15 Thread Will Jaynes
The examples for an editable inmethod datagrid show how to add validation when adding a new column. The firstName and lastName components are required. (component.setReqired(true)) And, indeed, if one edits a first name and blanks it out and press the save icon, the row is not updated. But no

Re: inmethod grid and add/delete examples

2009-02-12 Thread Will Jaynes
On Wed, Feb 11, 2009 at 9:58 AM, Will Jaynes wjay...@gmail.com wrote: I have just started to look at the inmethod datagrid in wicketstuff. The one thing that the examples don't show are how to add and delete items. Are there such examples somewhere? Will I'm really missing a lot

inmethod grid and add/delete examples

2009-02-11 Thread Will Jaynes
I have just started to look at the inmethod datagrid in wicketstuff. The one thing that the examples don't show are how to add and delete items. Are there such examples somewhere? Will

getting component parent

2007-08-10 Thread Will Jaynes
Using 1.3. I have a panel which needs to create different internal components depending on who it's parent is. However, calling getParent() in the constructor gives me null. I can make a constuctor that passes in the parent. But I wonder if there is a different way. Is there some other point