Re: Load table rows lazy when click browser scrollbar

2012-10-25 Thread vineet semwal
hi, quickview's immediate parent can have only one child and that can only be quickview.i have mentioned this issue in the below link https://github.com/vineetsemwal/quickview/issues/3 this limitation is only for the immediate parent . On Fri, Oct 26, 2012 at 10:32 AM, steven.li wrote: >

RE: Multiple Wicket:Child Tag Support

2012-10-25 Thread Ronny.Voss
To my best knowledge. Not supported directly - with multiple child/extend tags. You need using a design approach to achieve same - try search HOWTO header/header samples or look at possibilities using Fragment. Best regards Ronny -Original Message- From: Kapil Dhawan [mailto:kapil.dha.

Re: Multiple Wicket:Child Tag Support

2012-10-25 Thread Martin Grigorov
Hi, On Fri, Oct 26, 2012 at 9:37 AM, Kapil Dhawan wrote: > Hi List, > > I have tried finding answer to Multiple Wicket:Child Tag Support in archives > but could not find anything conclusive. > > Could you please confirm if Wicket is supporting it. No, this is not supported. The recommended way

Multiple Wicket:Child Tag Support

2012-10-25 Thread Kapil Dhawan
Hi List, I have tried finding answer to Multiple Wicket:Child Tag Support in archives but could not find anything conclusive. Could you please confirm if Wicket is supporting it. Thanks & Regards Kapil Dhawan

How to compare and show differences of two xml files in wicket

2012-10-25 Thread venkat
Hi , In my application, i have a scenario where I need to compare data of sql server tables from two environemnts and show the differences in side by side panels. I am using SQL server For XML () to convert the sql table data in to XML files and want to compare these two XMLs and show the differ

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Paolo
Alle giovedì 25 ottobre 2012, Martin Grigorov ha scritto: > On Thu, Oct 25, 2012 at 4:57 PM, Paolo wrote: > > Hi, > > I know that it is an old discussion, > > but I really want the url simply and clear, without ;jsessionid= and > > without ?1 ?2 etc. > > 1) make sure cookies are enabled - jsess

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Sebastien
Hi Martin, Thanks for your answer! Yes, I think it - indirectly - answers the need! In short: Google Analytics does not take into account the canonical links directly (it appears to be for indexing purpose only). However, you put me on the right direction, and a simple solution is provided here:

Re: WiQuery SortableBehavior/DroppableBehavior questions

2012-10-25 Thread Guillaume Smet
Hi Benedikt, On Thu, Oct 25, 2012 at 6:30 PM, Benedikt Schlegel wrote: > And i'm having an issue where the drop event isn't fired, when an item is > dropped at the first position of another sortable. Is anyone else > experiencing something similar or am I doing it wrong? This is due to the versi

javascript modal onclose event

2012-10-25 Thread Jack Berg
Hi, Is it possible to register a modal-close event listener in javascript? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/javascript-modal-onclose-event-tp4653353.html Sent from the Users forum mailing list archive at Nabble.com. --

Re: retrieve a page from PageStore?

2012-10-25 Thread Alfonso Quiroga
Martin, sorry, I'm using wicket 1.5.8 I'll check now DebugDiskDataStore, thanks!!! On Thu, Oct 25, 2012 at 12:13 PM, Martin Grigorov wrote: > Hi, > > 1. Why do you use *1.5RC7* ? > > 2. See DebugDiskDataStore in wicket-devutils. It shows how you can > extend the default data store (DiskDataStore)

WiQuery SortableBehavior/DroppableBehavior questions

2012-10-25 Thread Benedikt Schlegel
Hey guys, I'm having a hard time to get a jQuery-ui-sortable example with connected lists (see [1]) working. Since the WiQuery API changed "completely" with the last major release of Wicket and there are no up-to-date examples i can find, i don't know what to do next. We're currently investigating

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Martin Grigorov
Hi Sebastien, Is http://googlewebmastercentral.blogspot.com/2009/02/specify-your-canonical.html a solution for this use case ? On Thu, Oct 25, 2012 at 5:42 PM, Sebastien wrote: > Hi, > > I have a question related to this thread, how is it possible to have a > variable name for ?1, ?2 ? > ie: ?s

Re: retrieve a page from PageStore?

2012-10-25 Thread Martin Grigorov
Hi, 1. Why do you use *1.5RC7* ? 2. See DebugDiskDataStore in wicket-devutils. It shows how you can extend the default data store (DiskDataStore) to be able to browse it. Also read https://cwiki.apache.org/confluence/display/WICKET/Page+Storage. It explains some details about this part of Wicket

Re: retrieve a page from PageStore?

2012-10-25 Thread Alfonso Quiroga
Well I'm closer, I could retrieve the page doing this: getSession().getPageManager().getPage(1) This gives me the LAST version of "HomePage" Now, how can I know that page id "1" is the one I'm interested? Maybe I can save this id in the session, in the HomePage constructor? any ideas? On Thu,

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Sebastien
Hi, I have a question related to this thread, how is it possible to have a variable name for ?1, ?2 ? ie: ?state=1, ?state=2 (or another variable name) Is there any existing IRequestMapper for that for instance? One use case, is that google analytics allows to not take into account some url varia

retrieve a page from PageStore?

2012-10-25 Thread Alfonso Quiroga
Hi, I'm using Wicket 1.5RC7. I have only 2 pages (Login, and HomePage) HomePage has state and you can do things like search, etc. When the user hits "BACK BUTTON" trying to go to Login, I want to redirect it to HomePage, but with the last state. With exceptions, I have used PageRequestHandlerTrac

Re: I would url clear, without jsessionid and ?1

2012-10-25 Thread Martin Grigorov
On Thu, Oct 25, 2012 at 4:57 PM, Paolo wrote: > Hi, > I know that it is an old discussion, > but I really want the url simply and clear, without ;jsessionid= and without > ?1 ?2 etc. 1) make sure cookies are enabled - jsessionid is gone 2) make sure your pages are stateless - ?2 is gone Voila!

I would url clear, without jsessionid and ?1

2012-10-25 Thread Paolo
Hi, I know that it is an old discussion, but I really want the url simply and clear, without ;jsessionid= and without ?1 ?2 etc. I am starting to upgrade to wichet 6.2.0 actually I use this in MainApplication: protected void init() { super.init(); SecurePackageResourceGua

Re: Selected item into Palette

2012-10-25 Thread Sven Meier
Please attach a working quickstart for 1.5.x. Or preferrably just don't use a Palette. A single ListChoice should be sufficient. Sven On 10/25/2012 01:14 PM, Marco Di Sabatino Di Diodoro wrote: Hi Sven, with Apache Wicket 1.5.8 @Override protected IAjaxCallDecorat

Re: Selected item into Palette

2012-10-25 Thread Marco Di Sabatino Di Diodoro
Hi Sven, with Apache Wicket 1.5.8 @Override protected IAjaxCallDecorator getAjaxCallDecorator() { return new AjaxPreprocessingCallDecorator(super.getAjaxCallDecorator()) { private static final long serialVersionUID = -7927968187160354

Faked ajax requests

2012-10-25 Thread Jan Riehn
Hello, currently we've got a problem with faked ajax requests.these ajax requests misses some parameters, but the wicket-ajax header flag is set. So ServletWebRequest throws an exception: java.lang.IllegalStateException: Current ajax request is missing the base url header or parameter

[Announce] WicketStuff Core 6.2.0 is released

2012-10-25 Thread Martin Grigorov
Hello, WicketStuff Core projects version 6.2.0 have been released and shortly will be available at Maven Central repository. They are built against Apache Wicket 6.2.0. The changelog is: Michael Mosmann (39): cherry pick from serializer-kryo2 serializer-kryo readme changed to new ver

Re: Mount Page

2012-10-25 Thread dpmihai
Added here: https://issues.apache.org/jira/browse/WICKET-4836 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Mount-Page-tp4653318p4653335.html Sent from the Users forum mailing list archive at Nabble.com. ---

Re: Custom CSS for Feedback message is broken in 1.5

2012-10-25 Thread Sven Meier
Hi, >that a CSS class applies both to LI and to below-SPAN element I agree, applying the CSS class on the LI would be sufficient. But the current duplication should do no harm in most situations. Except where you cannot change the CSS, of course. Sven On 10/25/2012 01:07 AM, Joachim Schrod w

Re: Mount Page

2012-10-25 Thread Martin Grigorov
On Thu, Oct 25, 2012 at 10:14 AM, dpmihai wrote: > Yes. I was too tired not to think about getApplication() :) > > I also saw that for a > > mountPage("/myPage", MYPage.class) > > to make unmount to work I have to do > > unmount("myPage") > > without the starting "/". > > Is this the normal behavi

Re: Mount Page

2012-10-25 Thread dpmihai
Yes. I was too tired not to think about getApplication() :) I also saw that for a mountPage("/myPage", MYPage.class) to make unmount to work I have to do unmount("myPage") without the starting "/". Is this the normal behavior? I find it a bit misleading why the unmount does not work with a

Re: Custom CSS for Feedback message is broken in 1.5

2012-10-25 Thread Martin Grigorov
Hi, Here is an example of the produced markup for an single INFO message: Saved model [TestInputObject stringProperty = 'test', integerProperty = 100, doubleProperty = 20.5, booleanProperty = false, integerInRangeProperty = 50, urlProperty = http://wicket.apache.or