Re: PageParameters and setResponsePage()

2011-05-05 Thread Martin Grigorov
I can only suggest you to use Wicket 1.5. In current trunk MountedMapper supports all of this - named, indexed and optional parameters. See http://svn.apache.org/viewvc/wicket/trunk/wicket-core/src/test/java/org/apache/wicket/request/mapper/MountedMapperTest.java?view=markup for examples On Thu,

Re: Nothing happens on AJAX call after session timeout

2011-05-05 Thread vov
Do not work with Wicket 1.4.17. Can anybody post comment to last comment to http://apache-wicket.1842946.n4.nabble.com/Session-timeout-AJAX-enabled-controls-td1893184.html ? -- View this message in context:

Re: Nothing happens on AJAX call after session timeout

2011-05-05 Thread Martin Grigorov
Please create a demo application and attach it to a ticket On Thu, May 5, 2011 at 8:42 AM, vov vov...@mail.ru wrote: Do not work with Wicket 1.4.17. Can anybody post comment to last comment to http://apache-wicket.1842946.n4.nabble.com/Session-timeout-AJAX-enabled-controls-td1893184.html ?

1.5 RC4

2011-05-05 Thread nino martinez wael
How far away are RC4 from being released? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: 1.5 RC4

2011-05-05 Thread Martin Grigorov
I just sent an email to dev@ that I'll try to do it this weekend. It needs 3 days voting so it will be in Maven repos officially around next Wednesday/Thursday. On Thu, May 5, 2011 at 10:31 AM, nino martinez wael nino.martinez.w...@gmail.com wrote: How far away are RC4 from being released?

Re: 1.5 RC4

2011-05-05 Thread nino martinez wael
Perfect:) 2011/5/5 Martin Grigorov mgrigo...@apache.org: I just sent an email to dev@ that I'll try to do it this weekend. It needs 3 days voting so it will be in Maven repos officially around next Wednesday/Thursday. On Thu, May 5, 2011 at 10:31 AM, nino martinez wael

Re: 1.5 RC4

2011-05-05 Thread Madan Mohan
Hi, Can anybody give me the best solution in the below case, In database there are two fields say A, B In UI i want to display a column which shows the value which is equal to A/B and this column should be sortable and the table should support pagination. we can load all the records from

Re: 1.5 RC4

2011-05-05 Thread Robert Dahlström
DataTable component Cheers Robert On 05/05/2011 11:04 AM, Madan Mohan wrote: Hi, Can anybody give me the best solution in the below case, In database there are two fields say A, B In UI i want to display a column which shows the value which is equal to A/B and this column should be sortable

Re: PageParameters and setResponsePage()

2011-05-05 Thread Peter Miklosko
Thank you for the tip Martin. Sorry to ask silly question, but where can I find API for 1.5-M3? I found this http://www.jarvana.com/jarvana/view/org/apache/wicket/wicket/1.5-M3/wicket-1.5-M3-javadoc.jar!/index.html but it is missing some classes like for example PageParameters. Or it is best to

Re: ComponentFeedbackPanel works during ajax validation, not on form submit

2011-05-05 Thread Andrea Del Bene
Hi Adam, try calling setOutputMarkupPlaceholderTag(true) instead of setOutputMarkupId on your barcodeFeedback. I have a component hierarchy that looks (grossly oversimplified) like: page --form components --form barcodeTextField barcodeFeedbackPanel TextFieldString

Re: PageParameters and setResponsePage()

2011-05-05 Thread Martin Grigorov
Download the jar from Maven repos. Latest version is RC3, not M3. On Thu, May 5, 2011 at 11:17 AM, Peter Miklosko peter.b...@gmail.com wrote: Thank you for the tip Martin. Sorry to ask silly question, but where can I find API for 1.5-M3? I found this

Re: Opera: Ajax response with script element

2011-05-05 Thread mschayna
Done, quickstart attached. https://issues.apache.org/jira/browse/WICKET-3669 Thanks Martin Schayna Martin Grigorov-4 wrote: Yes, it may be that Opera improved since this code has been added in wicket-ajax.js. Please file a ticket with a quickstart attached so we can debug it. On Wed,

Re: PageParameters and setResponsePage()

2011-05-05 Thread Peter Miklosko
I downloaded RC3, but even after building API from source (mvn javadoc:javadoc) when I open documentation in wicket-core/target/site/apidoc there is no package parameters inside org.apache.wicket.request.mapper and because of that no PageParameters class documentation. Any suggestions? Peter On

Re: PageParameters and setResponsePage()

2011-05-05 Thread Martin Grigorov
it is in wicket-request.jar On Thu, May 5, 2011 at 1:47 PM, Peter Miklosko peter.b...@gmail.com wrote: I downloaded RC3, but even after building API from source (mvn javadoc:javadoc) when I open documentation in wicket-core/target/site/apidoc there is no package parameters inside

Re: PageParameters and setResponsePage()

2011-05-05 Thread Peter Miklosko
God damn it so complicated... ;) Thank you for all your help Martin! Peter On 5 May 2011 12:51, Martin Grigorov mgrigo...@apache.org wrote: it is in wicket-request.jar On Thu, May 5, 2011 at 1:47 PM, Peter Miklosko peter.b...@gmail.com wrote: I downloaded RC3, but even after building API

Re: PageParameters and setResponsePage()

2011-05-05 Thread Martin Grigorov
Using Maven/Ivy/Gradle/Buildr/... helps a lot these days ;-) On Thu, May 5, 2011 at 1:54 PM, Peter Miklosko peter.b...@gmail.com wrote: God damn it so complicated... ;) Thank you for all your help Martin! Peter On 5 May 2011 12:51, Martin Grigorov mgrigo...@apache.org wrote: it is in

RE: Serve Json in request and response

2011-05-05 Thread Mathias Nilsson
Thanks but this is not the problem. The problem is the Json server. I want to use Json as both query language and response language This doens't seem to be right for the query. How would you handle this. http://myspace.com/json?q={really.ong.nested.query} What is the proper way of sending

Re: Serve Json in request and response

2011-05-05 Thread Martin Grigorov
Send them with POST so they don't appear in the the url. Or encode them somehow and then ?json=encodedJson (e.g. base64) On Thu, May 5, 2011 at 2:44 PM, Mathias Nilsson wicket.program...@gmail.com wrote: Thanks but this is not the problem. The problem is the Json server. I want to use Json

Re: ComponentFeedbackPanel works during ajax validation, not on form submit

2011-05-05 Thread Adam Gray
I believe that method is intended to render a placeholder tag when a component isn't visible on the page to allow ajax updates. My ajax validation works great already. The component feedback panel is never hidden, it just doesn't get picked up as a valid destination for feedback messages on a

Re: ComponentFeedbackPanel works during ajax validation, not on form submit

2011-05-05 Thread Andrea Del Bene
Have called setReuseItems(true) on your listview component? Without this property setted to true, messages inside listview won't be displayed. I believe that method is intended to render a placeholder tag when a component isn't visible on the page to allow ajax updates. My ajax validation works

Re: ComponentFeedbackPanel works during ajax validation, not on form submit

2011-05-05 Thread Adam Gray
Wow. I guess that's me not understanding the inner-workings of list view. Thanks for pointing me at the list view. Once that was pointed out, the documentation explained it very well. Knowing where to look seemed to be what was blocking me. Thanks again. ~Adam On Thu, May 5, 2011 at 11:03

Re: wicket-tree checkboxes managing

2011-05-05 Thread massimo_pugni
Hi Sven, I'm slowly moving forward and now loading a 2-levels checked selectable tree within a panel hosted by tabbed page and so on. The only significant changes I did are related to the model and the data providing but a question: why do I get the branches (second level) lost the second time I

Re: wicket-tree checkboxes managing

2011-05-05 Thread Sven Meier
Hi Massimo, for the tree it doesn't matter which component it is contained in. There must be another change causing this. why do I get the branches (second level) lost What is lost, the complete branch or is the branch just collapsed? Best regards Sven Am 05.05.2011 17:36, schrieb

Re: wicket-tree checkboxes managing

2011-05-05 Thread massimo_pugni
hello Sven, the branch just collapsed. After a tab switching the tree is rightly loaded into its collapsed state (active arrows + labels) and the same thing does not happen replacing the 'extends FormComponentPanel' with 'extends Panel'. I must add that the application is very complex and the

Re: wicket-tree checkboxes managing

2011-05-05 Thread Sven Meier
Hi, I just rechecked the source of FormComponentPanel and there's nothing in there which could have any effect on the tree. Sorry, but I don't have any clue what might be going wrong here. Sven On 05/05/2011 09:14 PM, massimo_pugni wrote: hello Sven, the branch just collapsed. After a tab