RE: jQuery Mobile styling disappears after Wicket ajax update

2012-01-26 Thread Bodis, Jerome
Correct me if i'm wrong, but with normal jquery event handlers get lost if an element has changed. That's why you have to reattach them with on()/live(). Maybe this is the case? If it's only the css class you could try to add them with AttributeAppender/Modifier. -Original Message-

RE: jQuery Mobile styling disappears after Wicket ajax update

2012-01-26 Thread Hielke Hoeve
Correct. You need to use modifiers or appenders on your components if you manually apply the style or call any jquery functions to make sure that jquery reapplies the styles. The html gets replaced and with that any jquery additions generated on the client. You can use the

Re: Trouble with Page Markup Inheritance getVariation()

2012-01-26 Thread Martin Grigorov
Hi, Looks like a problem in Wicket. Please create a ticket. On Wed, Jan 25, 2012 at 10:30 PM, Bodis, Jerome bo...@uni-mainz.de wrote: Hi, I have a web page 'ChildPage' that inherits (java/markup) from a 'SuperPage' ('ChildPage' -- 'SuperPage'). 'ChildPage' now needs to override

Re: How to get actual data from ByteArrayResource

2012-01-26 Thread Martin Grigorov
Hi, I think it will be easier for you to just get the RSS from your service (the way you give it to ByteArrayResource). But it is possible with your approach as well (see below). On Wed, Jan 25, 2012 at 11:55 PM, kevjay kev...@gmail.com wrote: I have a ByteArrayResource where I have overridden

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread matteus
Hi, I managed to put the veil on my page after I execute a method, but I can not remove the veil. I used the class shown on the site http://grepcode.com/file/repo1.maven.org/maven2/org.wicketstuff/minis/1.4.17.1/org/wicketstuff/minis/veil/VeilResources.java and I can not remove. Someone could

RE: Trouble with Page Markup Inheritance getVariation()

2012-01-26 Thread Bodis, Jerome
https://issues.apache.org/jira/browse/WICKET-4361 - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread Martin Grigorov
Show us how you use it. On Thu, Jan 26, 2012 at 12:39 PM, matteus matteu...@hotmail.com wrote: Hi, I managed to put the veil on my page after I execute a method, but I can not remove the veil. I used the class shown on the site

Re: Wicket as a RESTful Client

2012-01-26 Thread Martin Grigorov
This is a strange architecture but ... You can use Apache HttpClient, or URL(http://...;).openConnection() or Ning's AsyncHttpClient to request the REST service. With these you can get/update/delete the resources (XML, JSON, ...), after that you have to decide how to show it. On Thu, Jan 26, 2012

Re: Wicket as a RESTful Client

2012-01-26 Thread Rahman USTA
Can't i do this bu using ; public class RestfulPage extends WebPage{ @Override protected void configureResponse(WebResponse response) { super.configureResponse(response);//To change body of overridden methods use File | Settings | File Templates. response.sendRedirect(

Re: Veil behavior of wicketstuff-minis

2012-01-26 Thread matteus
In my method I call this protected void onSubmit(AjaxRequestTarget target, Form? form) { form.add(new Veil()); target.addComponent(form); -- method to be execute ---

Wiquery and JQWicket crash each other!!!!

2012-01-26 Thread atomix
Wiquery and JQWicket crash each other When using Wicket (1.5.3) + JQWicket 8.0 + Wiquery (1.5.3) , the order of the js libraries will be wrong 1) I've started with: Wicket (1.5.3) + JQWicket 8.0 *I run the TipTipPage Example ... * *generated html:* *Everything work fine!!!*

Stateless forms on Wicket 1.5.4

2012-01-26 Thread André Camilo
Hi, I think wicket 1.5.4 has a problem with stateless forms. On the example http://www.wicket-library.com/wicket-examples/stateless/state-in-url , doing the following steps: Submit value 10 - Value submitted: 10 Submit again value 11, and it show value submitted: 10 (and the query

Re: How to get actual data from ByteArrayResource

2012-01-26 Thread kevjay
Thanks Martin! I should have been more clear that my app is actually creating the RSS which is why I want to display it one of my Panels for debug purposes. Anyways, your code below helped me finally get my solution. It didn't like StringResponse, but ByteArrayResponse worked just fine:

Re: Problems with requests to MountPath and optional parameters

2012-01-26 Thread kamiseq
maybe try date as milseconds (as long)? pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Re: Wiquery and JQWicket crash each other!!!!

2012-01-26 Thread atomix
I got answer from Wiquey developer : Hi! JQWicket and WiQuery do not work well together. Both aim to do the same but using a different approach. Choose either one, not both. When you add WiQuery to the classpath it installs itself using a Wicket Initializer and sets a HeaderResponseDecorator.

Wicket Feedback panels and Hibernate Validation

2012-01-26 Thread Wooldridge, Keith A
I'm trying to create a custom hibernate validator , based on bradhouse's solution in this StackOverflow threadhttp://stackoverflow.com/questions/1972933/cross-field-validation-with-hibernate-validator-jsr-303. I'm passing in the field name that I would like the error message to be associated

Re: handling request to component - the wicket way

2012-01-26 Thread robert.mcguinness
what version of wicket are you using? -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/handling-request-to-component-the-wicket-way-tp4331722p4332046.html Sent from the Users forum mailing list archive at Nabble.com.

Re: handling request to component - the wicket way

2012-01-26 Thread kamiseq
1.5.4 why? if you have any resources I ve overlooked it d be great if you can share them:] pozdrawiam Paweł Kamiński kami...@gmail.com pkaminski@gmail.com __ - To unsubscribe, e-mail:

Re: handling request to component - the wicket way

2012-01-26 Thread robert.mcguinness
i asked which version because stateless components are easier in wicket 1.5.x. i currently have an example stateless components using wicket 6.0.x at https://github.com/robmcguinness/wicket-stateless. i had 1.5.x examples but i think i lost that history when i rebased in git. use gradle to

Re: JavaScriptReference with TextTemplate only returns the first retrieved value

2012-01-26 Thread Adam Gray
I just ran into this today. Has this been solved yet (in 1.4)? On Tue, Aug 23, 2011 at 10:23 PM, Doug Leeper douglee...@yahoo.com wrote: I have encountered this issue as well...and I believe I know the reason for this behavior. The TextTemplateResourceReference eventually is bound to the