Re: Wicket for large user base website

2012-05-07 Thread Martin Grigorov
read https://cwiki.apache.org/confluence/x/qIaoAQ to understand how Wicket stores the pages the app I work on has ~15M registered users and ~200K concurrent users. I hope these are good enough numbers for you On Mon, May 7, 2012 at 9:54 AM, kshitiz k.agarw...@gmail.com wrote: Okkwicket

Re: Error with link in DataTable together with AjaxEventBehavior(onclick)

2012-05-07 Thread Martin Grigorov
Hi, This is how the event propagation/bubbling works in the browsers. You need to suppress the bubbling of the JavaScript event. See http://www.quirksmode.org/js/events_order.html for more info. You can use IAjaxCallDecorator to stop the event after clicking on the ajax link. On Sat, May 5, 2012

Re: How To Catch Network Disconnection In Ajax Buttons

2012-05-07 Thread Martin Grigorov
Hi, You can use browser's online and offline events to be notified when the network is down for some reason. See http://stackoverflow.com/questions/3181080/how-to-detect-online-offline-event-cross-browser On Fri, May 4, 2012 at 1:00 PM, Horacio Natyural horacio.natyu...@gmail.com wrote: Hi,

Re: Exception when detaching/serializing a page

2012-05-07 Thread Martin Grigorov
Hi, This error means that for some reason the page instance cannot be stored in the disk. Any following Ajax request would not be able to find the page instance and thus wont work (e.g. the ModalWindow uses Ajax). I'd recommend to enable finer logging for Session class and see what is the real

Re: Datatable with selection row below the header

2012-05-07 Thread Martin Grigorov
Hi, You can use the filtering columns from org.apache.wicket.extensions.markup.html.repeater.data.table.filter (wicket-extensions) to do that On Thu, May 3, 2012 at 1:43 PM, lang delan...@telfort.nl wrote: I need a table like datatable, only one difference: t must has input fields on the

Re: Wicket AutoComplete example does not work

2012-05-07 Thread Martin Grigorov
Thanks Brian, This is fixed in 1.5.6 and I'll redeploy the examples at wicket-liibrary.com soon. On Fri, May 4, 2012 at 9:13 PM, Brian Mulholland blmulholl...@gmail.com wrote: I just looked at the wicket autocomplete example at http://www.wicket-library.com/wicket-examples/ajax/autocomplete?0

Re: BookmarkableLinks and masked urls

2012-05-07 Thread Martin Grigorov
Hi, Since the app is new I'd suggest to use Wicket 1.5.6+ or 6.0+. 1.4.x branch is in maintainance mode and will receive only security related fixes. On Sat, May 5, 2012 at 3:59 AM, infiniter infini...@gmail.com wrote: I think I've done it. I created a MaskedUrlCodingStrategyDecorator that

Re: WICKET-1.5.6 Feedback messages not updated on stateless pages

2012-05-07 Thread Martin Grigorov
Hi Thomas, It seems WICKET-4468 broke it somehow. Please file a ticket. On Sun, May 6, 2012 at 1:55 PM, Thomas Heigl tho...@umschalt.com wrote: Hello, I'm currently in the process of migrating a largish Wicket 1.4 application to 1.5. When moving from 1.5.5 to 1.5.6 something related to

Re: WICKET-1.5.6 Feedback messages not updated on stateless pages

2012-05-07 Thread Emond Papegaaij
I've already created the ticket (WICKET-4536) and committed a fix. Best regards, Emond On Monday 07 May 2012 11:13:22 Martin Grigorov wrote: Hi Thomas, It seems WICKET-4468 broke it somehow. Please file a ticket. On Sun, May 6, 2012 at 1:55 PM, Thomas Heigl tho...@umschalt.com wrote:

Apache Wicket 1.5.6 is released

2012-05-07 Thread Martin Grigorov
This is the sixth maintenance release of the Wicket 1.5.x series. This release brings over 40 bug fixes and improvements. Git tag: release/wicket-1.5.6 Changelog: https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561version=12319053 Maven: dependency

Re: Generics of Button#getForm

2012-05-07 Thread Martin Grigorov
Done It will be better for 1.5.7/6.0.0-next On Mon, May 7, 2012 at 2:29 PM, Jonas barney...@gmail.com wrote: Hello all, as Sebastien mentioned earlier (http://apache-wicket.1842946.n4.nabble.com/Vote-Release-Apache-Wicket-1-5-6-build-2-td4593151.html#a4593497) the of Button#getForm returns

Calling wicket from javascript

2012-05-07 Thread jcf1974
Hello, I'm new in this forum, and i love wicket!!! My question is: What wrong with this code? @Override protected IAjaxCallDecorator getAjaxCallDecorator() { return new AjaxPreprocessingCallDecorator(super.getAjaxCallDecorator()) {

Re: Calling wicket from javascript

2012-05-07 Thread Richard W. Adams
Hard to say without details. Are you not getting the behavior you expect (and what is that behavior?). Are you getting an error message? RAM /abr./: Rarely Adequate Memory. From: jcf1974 eslae...@eresmas.com To: users@wicket.apache.org Date: 05/07/2012 07:07 AM Subject:

refresh page from an AjaxLink or OnChangeAjaxBehavior

2012-05-07 Thread Mihai Toma
Hi, I have an OnChangeAjaxBehavior on a DropDownChoice component. After I change a value in that drop down I want to reload the page using setResponse(currentPage.getClass(), currentPage.getPageParameters()); themeComp.add(new OnChangeAjaxBehavior() {

RE: refresh page from an AjaxLink or OnChangeAjaxBehavior

2012-05-07 Thread Mihai Toma
Forgot to say wicket 1.5.5. Mihai -Original Message- From: Mihai Toma [mailto:mihai.t...@asf.ro] Sent: Monday, May 07, 2012 3:47 PM To: users@wicket.apache.org Subject: refresh page from an AjaxLink or OnChangeAjaxBehavior Hi, I have an OnChangeAjaxBehavior on a DropDownChoice

Re: refresh page from an AjaxLink or OnChangeAjaxBehavior

2012-05-07 Thread Martin Grigorov
This should just work. Not sure why it breaks for you. Create a quickstart app and attach it to a ticket. On Mon, May 7, 2012 at 3:53 PM, Mihai Toma mihai.t...@asf.ro wrote: Forgot to say wicket 1.5.5. Mihai -Original Message- From: Mihai Toma [mailto:mihai.t...@asf.ro] Sent:

Re: Calling wicket from javascript

2012-05-07 Thread jcf1974
I tried to call wicket from javascript without using a wicket behaviour, and the error/warning i get is wcall is not defined. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Calling-wicket-from-javascript-tp4614627p4614859.html Sent from the Users forum mailing

Re: Wicket for large user base website

2012-05-07 Thread Nick Heudecker
Martin, Would you mind outlining your site's hardware configuration to support that load? I'm sure it would be helpful. Thanks! -Nick On Mon, May 7, 2012 at 12:20 AM, Martin Grigorov mgrigo...@apache.orgwrote: read https://cwiki.apache.org/confluence/x/qIaoAQ to understand how Wicket stores

Wicket Examples

2012-05-07 Thread Corbin, James
The wicket examples (www.wicket-library.com/wicket-examples/) seems to be having issues. I select the Contacts Editor option under the repeaters section and I get a permgen error. Is this site working properly? I assume the URL above is appropriate? J.D.

Re: Wicket for large user base website

2012-05-07 Thread kshitiz
Thanks all for the reply...actually I haven't looked into the hardware as I am in middle of application development. Just going through various forums, people were recommending Wicket for dekstop apps as it is statefull framework. But as I can see various Wicket websites with high traffic, I think

Re: WicketStuff HTML validator 1.5-rc3 released

2012-05-07 Thread northar
Any updates coming to this component soon, as it don't seem to be in the repo at https://github.com/wicketstuff? Are there any other good alternatives to this component for validating on the fly in wicket? Thanks for any hints! /Northar -- View this message in context: