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. A

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 h

Re: Localize AjaxButton

2007-09-11 Thread Tim Lantry
Thanks Al. That worked. I should have thought of that. On 9/11/07, Al Maw <[EMAIL PROTECTED]> wrote: > > Tim Lantry wrote: > > How do you localize the 'label' on an AjaxButton component? > > Off the top of my head, try: > > AjaxButton foo = n

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
Good point. I'll have to think about that one. On 8/31/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > then the problem is that previously checked but now unchecked things wont > be > cleared from your collection > > -igor > > On 8/31/07, Tim Lantry <[E

Re: CheckGroup in a DataTable

2007-08-31 Thread Tim Lantry
On 8/30/07, Igor 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 impl

Re: CheckGroup in a DataTable

2007-08-30 Thread Tim Lantry
two Objects in the list. I then hit the previous page link and before render and after render both had an empty list. On 8/30/07, Tim Lantry <[EMAIL PROTECTED]> wrote: > > No, in my test I didn't include the hascode/equals methods. I will give > that a try. > > On 8/

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 <[EMAI

Re: CheckGroup in a DataTable

2007-08-30 Thread Tim Lantry
ng does that list > 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

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 u

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 row0_col1 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 no avail. Any help would be appreciated. Than