Re: AutoCompleteTextField: converter seems to be ignored

2010-08-20 Thread Wilhelmsen Tor Iver
However, wicket never calls the getConverter() method and simply uses SomePOJO.toString() to retrieve the text for the choices. What am I doing wrong? One possibility is that in all the nested classes in the typical Wicket source file you have added the method to the wrong class. Try adding

AutoLinkResolver WARNINGS

2010-08-20 Thread Arjun Dhar
Hi,I have my markups in another folder and am mounting static pages via a generic template (so I don't have to use a new class for every static page). The Static pages are in a Common template, that uses a common menu to navigate and uses wicket:link to get the correct link from Wicket. Works

Stateless Login Form possible?

2010-08-20 Thread bht
Hi, I had a stateless login form that did actually not expire ... until I added an image as submit button. Sorry to raise this topic again, but AFAIK this has not been answered yet: ImageButton - always stateful ?

Re: Stateless Login Form possible?

2010-08-20 Thread Johan Compagner
an image button can be stateless: protected boolean getStatelessHint() { return getImageResource() == null localizedImageResource.isStateless(); } but that must be true. On Fri, Aug 20, 2010 at 13:19, b...@actrix.gen.nz wrote: Hi, I had a stateless

Re: Wicket Jobs San Francisco Bay Area

2010-08-20 Thread Josh Kamau
Is this vacancy open to non-US residents? regards. Josh On Thu, Aug 19, 2010 at 8:26 PM, Joachim F. Kainz j...@jolira.com wrote: My apologies to most of you who will consider this Spam, but we are looking for developers with Wicket experience in the San Francisco Bay Area. We are a

Re: Sort column header for PageableListView

2010-08-20 Thread deepa
Anton , This is what i could find.. In this example its used DataTable, but i want this sorting to be performed on PageableListView component. Is it possible to do so with PageableListView? Deepa -- View this message in context:

Nested properties in DataTable Filters

2010-08-20 Thread zenith77
I'm having issues with nested properties in DataTable filters. For example; columns.add( new TextFilteredPropertyColumnUser,String( new ModelString(Active), subtype.prop, subtype.prop ) ); columns.add( new ChoiceFilteredPropertyColumnUser,Boolean( new ModelString(Active), subtype.bool,

Re: Sort column header for PageableListView

2010-08-20 Thread Igor Vaynberg
See how HeadersToolbar does this for datatable, you can reuse all those sortable components -igor On Fri, Aug 20, 2010 at 7:10 AM, deepa deeparanb...@gmail.com wrote: Anton , This is what i could find.. In this example its used DataTable, but i want this sorting to be performed on

Reacting to AutoCompleteTextField choice selection event

2010-08-20 Thread Alexandros Karypidis
Hi, I have an AutoCompleteTextField, for which I need to react to user selections from the choices list. For example, if a user enters Au and the choices Austria and Australia are shown, I need to be able to execute some code via a callback if the user scrolls down to one of the two choices

Re: Stateless Login Form possible?

2010-08-20 Thread bht
Hi Johan, Thanks. How is it possible that this is true with any ImageButton constructor: (getImageResource() == null localizedImageResource.isStateless()) On Fri, 20 Aug 2010 13:25:11 +0200, you wrote: an image button can be stateless: protected boolean getStatelessHint() {

Re: Reacting to AutoCompleteTextField choice selection event

2010-08-20 Thread Alexandros Karypidis
Hi, I have an AutoCompleteTextField, for which I need to react to user selections from the choices list. For example, if a user enters Au and the choices Austria and Australia are shown, I need to be able to execute some code via a callback if the user scrolls down to one of the two

Re: Reacting to AutoCompleteTextField choice selection event

2010-08-20 Thread Igor Vaynberg
you should be using objectautocompletetextfield in wicket-stuff -igor On Fri, Aug 20, 2010 at 1:01 PM, Alexandros Karypidis akary...@yahoo.gr wrote:  Hi, I have an AutoCompleteTextField, for which I need to react to user selections from the choices list. For example, if a user enters Au and

AccordionPanel works on web page but not in another panel

2010-08-20 Thread cole
Wicket 1.4 and using the AccordionPanel/AccordionPanelItem src from the wicket-contrib-accordion area. I can place this component on a web page via and it works fine. When I try to place this same component in another tab panel it fails. The page actually hangs with no output. I used fiddler to

Re: AccordionPanel works on web page but not in another panel

2010-08-20 Thread nino martinez wael
if you make a quickstart I can take a look at it. 2010/8/20 cole cmilli...@comcast.net Wicket 1.4 and using the AccordionPanel/AccordionPanelItem src from the wicket-contrib-accordion area. I can place this component on a web page via and it works fine. When I try to place this same