Palette override localization

2009-07-28 Thread Tim Lantry
Is there a way to turn off the localization of the choices in a Palette component? It looks like the AbstractChoice has the ability but the Palette which uses AbstractOptions does not. Thanks, Tim

Ajax update (visitor)

2008-01-14 Thread Tim Lantry
I have a visitor that adds a behavior to all the links on my page. The visitor fires onbeforeRender of the page. The behavior uses the onComponentTag to prepend some javascript to a link. This works great. However lets say I want to update a table via ajax that has several links in the cells.

ModalWindow setResponse

2007-11-19 Thread Tim Lantry
Is there any way to forward to a page outside of a modal window from within a modal window? The typical behavior when using setResponsePage from within a modal window is that the new page shows up in the same modal window. That is great for most of my scenarios. However, in this case I want to

Localize AjaxButton

2007-09-11 Thread Tim Lantry
How do you localize the 'label' on an AjaxButton component?

Re: CheckGroup in a DataTable

2007-08-31 Thread Tim Lantry
Vaynberg [EMAIL PROTECTED] wrote: and you are sure all links in the navigator are submit links? if so then post a quickstart and we will take a look -igor On 8/30/07, Tim Lantry [EMAIL PROTECTED] wrote: I implemented hascode and equals on the row model object. I still get the same results

CheckGroup in a DataTable

2007-08-30 Thread Tim Lantry
I am using a Check component inside of a DataTable. The DataTable is surrounded by a CheckGroup. The model on each Check component is the Row Model. This works great to get a list of checked rows. Is there a good way to retain the checks across pages? I created a new Navigator component that

Re: CheckGroup in a DataTable

2007-08-30 Thread Tim Lantry
make it into checkgroup's model when switch pages? -igor On 8/30/07, Tim Lantry [EMAIL PROTECTED] wrote: I am using a Check component inside of a DataTable. The DataTable is surrounded by a CheckGroup. The model on each Check component is the Row Model. This works great to get

Re: CheckGroup in a DataTable

2007-08-30 Thread Tim Lantry
No, in my test I didn't include the hascode/equals methods. I will give that a try. On 8/30/07, Igor Vaynberg [EMAIL PROTECTED] wrote: and whatever that model is it has a proper hashcode/equals implemented? -igor On 8/30/07, Tim Lantry [EMAIL PROTECTED] wrote: Yes, I added an onSubmit

DataTable span tag

2007-08-27 Thread Tim Lantry
Is there a way to remove the span tags from the table cells in a DataTable? Example td wicket:id=cells span wicket:id=cellrow0_col1/span /td I tried to call visitChildren on the DataTable but I don't ever get to the Item. I also tried to override newCellItem adding setRenderBodyOnly but to