SessionStore on database

2020-04-28 Thread ShengChe Hsiao
Dear all I want to implement cross datacenter session replication for my web app, can I persist session on shared database? If it does, how can I do? I searched the web, and found org.apache.wicket.protocol.http. SecondLevelCacheSessionStore.IClusteredPageStore I have an idea for implement

Re: The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread kyc
Finally I found out the jquery.js is the reason makes the AutoCompleteTextField not working. Thanks Martin and Sven. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html - To unsubscribe, e-mail:

Re: The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread kyc
I copied the page to my application to run but still have the problem. It may relate to different layout. But I don't have the WicketExamplePage in the example. -- Sent from: http://apache-wicket.1842946.n4.nabble.com/Users-forum-f1842947.html

Re: The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread Sven Meier
Hi, you find an example page in wicket-examples org.apache.wicket.examples.ajax.builtin.AutoCompletePage that works fine. Could you try it and check the difference to your code please? Have fun Sven On 28.04.20 10:55, kyc wrote: Dear Martin, Thank you for your answer. I upgraded to

Re: The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread kyc
Dear Martin, Thank you for your answer. I upgraded to wicket 7.16 to test my program but the result is the same. I checked the browser console / the network console and no error is found. (WICKET AJAX DEBUG box is also no error) Please note the model getObject() call back is called normally.

Re: The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread Martin Grigorov
Hi, On Tue, Apr 28, 2020 at 9:54 AM kyc wrote: > I am using wicket 7.14 > Try to upgrade to 7.16. > > The following setObject is not called if I select the item from the list > showing from AutoCompleteTextField. > However, it will be called if I type something on the textfield. I tried >

The AutoCompleteTextField model callback setObject() not working

2020-04-28 Thread kyc
I am using wicket 7.14 The following setObject is not called if I select the item from the list showing from AutoCompleteTextField. However, it will be called if I type something on the textfield. I tried the wicket example with form surrounding the input tag and add AjaxFormSubmitBehavior which