AutoComplete requires a Key Press event

2014-11-19 Thread rsi610
I have added an AutoCompleteTextField. The textfield doesnt have any onchange behaviours attached to it. Autocomplete works only when i there is a key press event . It should work normally which is not happening Wicket version : 6.9 -- View this message in context: http://apache-wicket.18429

Re: AutoComplete requires a Key Press event

2014-11-19 Thread Martin Grigorov
Hi, On Wed, Nov 19, 2014 at 12:35 PM, rsi610 wrote: > I have added an AutoCompleteTextField. > The textfield doesnt have any onchange behaviours attached to it. > > Autocomplete works only when i there is a key press event . It should work > normally which is not happening > Please define "nor

Re: AutoComplete requires a Key Press event

2014-11-19 Thread rsi610
Hi , Normally means without any key press.. i enter 2 3 characters and the choices should become visible. Right now i need a key press event. We are using 6.9 in our application. Upgrading wont be possible as of now. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Au

Re: AutoComplete requires a Key Press event

2014-11-19 Thread Martin Grigorov
On Wed, Nov 19, 2014 at 1:00 PM, rsi610 wrote: > Hi , > > Normally means without any key press.. i enter 2 3 characters and the > choices should become visible. > Right now i need a key press event. > How do you enter 2/3 characters without pressing a key ? > > We are using 6.9 in our applicat

Re: AutoComplete requires a Key Press event

2014-11-19 Thread rsi610
My Bad , I apologies for the confusion I need an arrow key / enter key press event on which the choices come. When i enter characters and wait, the choices dont show. After entering the characters i need to press either up/down/right/left arrow. -- View this message in context: http://apache-

Re: AutoComplete requires a Key Press event

2014-11-19 Thread Martin Grigorov
http://www.wicket-library.com/wicket-examples-6.0.x/ajax/autocomplete works fine here it should be either a problem in 6.9.0 or in your app Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Nov 19, 2014 at 1:23 PM, rsi610 wrote: > My Bad , I apologies for the

Re: AutoComplete requires a Key Press event

2014-11-19 Thread rsi610
I understand there is some problem. But has any1 faced any issue like this or knows a fix for the same ? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/AutoComplete-requires-a-Key-Press-event-tp4668452p4668458.html Sent from the Users forum mailing list archive at Nab

Re: IPageRendererProvider - HTTP 500 issue

2014-11-19 Thread Sven Meier
Hi, I'm not exactly sure what you're trying to do, but the following is just wrong: getRequestCycle().scheduleRequestHandlerAfterCurrent(new RedirectRequestHandler("http://localhost:8080/wicket/bookmarkable/com.mycompany.Foo2?ff=gg";)); This will result in two responses written to the clien

What is the proper way to start a secondary process in Wicket 6

2014-11-19 Thread Warren Bell
I am using Wicket 6 REST annotations and want to asynchronously start a process that writes some logging data to a db. I don’t need the response to wait for this process. I have tried using threads, but I get the “App not attached to this thread” exception when I try to use an injected service.

Re: Wicket and microdata

2014-11-19 Thread Hendy Irawan
Hi Dirk and Martin, Dirk Forchel wrote > > Martin Grigorov-4 wrote >> Another way is to add these attributes directly in the markup. No need to >> add Behavior to the components for something that is always true. > Yes, but I prefer the "dynamic" way. A Component/Page provides some kind > of "mi

Re: What is the proper way to start a secondary process in Wicket 6

2014-11-19 Thread Ernesto Reinaldo Barreiro
Hi Warren, On Thu, Nov 20, 2014 at 12:46 AM, Warren Bell wrote: > I am using Wicket 6 REST annotations and want to asynchronously start a > process that writes some logging data to a db. I don’t need the response to > wait for this process. I have tried using threads, but I get the “App not > a

Re: Wicket and microdata

2014-11-19 Thread Hendy Irawan
Here's what I came up with : https://github.com/soluvas/soluvas-web/commit/8cfbe121bc8589502154bf72fff9bd94762dd7cb While my usage is for e-commerce websites, with sufficient definitions it's usable for any kind of site, primarily using schema.org vocabulary. IMHO it's quite convenient (thanks to

Re: form submit / parameters sometimes missing

2014-11-19 Thread Stefan Renz
Hi, I don't think URL-length is an issue -- after all, we are talking about POST, not GET. I had trouble once by having PageParameters with some keys (for example, "name") and form field id with the same key (here: "name"). Wicket got that mixed up (AFAIR that was Wicket 1.4 or 5). Ever since tha

Re: form submit / parameters sometimes missing

2014-11-19 Thread Martin Grigorov
Hi, On Thu, Nov 20, 2014 at 9:38 AM, Stefan Renz wrote: > Hi, > > I don't think URL-length is an issue -- after all, we are talking about > POST, not GET. > > I had trouble once by having PageParameters with some keys (for example, > "name") and form field id with the same key (here: "name"). W

Re: What is the proper way to start a secondary process in Wicket 6

2014-11-19 Thread Martin Grigorov
Hi, Someday I'll write a blog (with a demo) about this at http://wicketinaction.com. The question is being asked regularly. Actually anyone can send a Pull Request at https://github.com/dashorst/wicketinaction.com with such article. Martin Grigorov Wicket Training and Consulting https://twitter.