Re: Error while closing the modal window

2012-01-25 Thread sudeivas
After researching, I found setting a different page map name for modal window will fix the issue. But setPageMapName API is removed in wicket-1.5.3. Any another solution for this? Thanks, Suresh -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Error-while-closing-the-

How to get actual data from ByteArrayResource

2012-01-25 Thread kevjay
I have a ByteArrayResource where I have overridden getData (RSS feed). I have no problem accessing this through the browser and seeing my content. However, I want to "inject" this in an actual page via Label for debugging purposes. I've tried getting a hold of the actual data a number of ways li

jQuery Mobile styling disappears after Wicket ajax update

2012-01-25 Thread wicket_newb
I'm trying to implement a list that updates itself after a user clicks on a link. The list is a ListView repeater and is a child of WebMarkupContainer. For each ListView item, I've attached an AjaxFallbackLink with the WebMarkupContainer object as the sole ajax target. My implementation mostly w

Re: Error while closing the modal window

2012-01-25 Thread sudeivas
I just added the below code, modalWindow.setOutputMarkupId(true); But now I am seeing a different error, Page with id '6' has expired. org.apache.wicket.protocol.http.PageExpiredException: Page with id '6' has expired. at org.apache.wicket.request.handler.PageProvider.getPageInstance(Pag

Re: How to refresh frame2 with an Ajax submit button in frame1 for a page using frameset?

2012-01-25 Thread robert.mcguinness
Example of monkey patching wicket 1.3 javascript to support dom find/replacement across iFrames and window.opener, maybe this will give you some ideas. https://github.com/robmcguinness/wicket-events/blob/master/src/main/java/com/robmcguinness/pages/rm3.js#L17 -- View this message in context: ht

Re: Wicket webshere 7

2012-01-25 Thread matteus
Its work with the servlet, but I had to change the implementation that you gave me through the link. In my application when I put all the code was it not working so I had to put only the following code: wicket.application org.apache.wicket.protocol.http

Re: Wicket webshere 7

2012-01-25 Thread James Carman
The surprising thing is that you actually have to do something like that to get it to work properly. On Jan 25, 2012 3:04 AM, "Geoff Lancaster" wrote: > Filters work just fine. Did you set > > com.ibm.ws.webcontainer.invokefilterscompatibility= true > In your web containers custom properties? > >

Re: To enable client-side page caching

2012-01-25 Thread Michael Allan
PPS, This isn't enough: > > ... Is there an API to re-enable caching? Or do I set > > the response headers myself? > > Sorry, I see the answer is WebResponse.enableCaching() ... You must also override WebPage.setHeaders(). It isn't documented so I updated the wiki and opened a bug on the 1.5.

Re: How to customize RatingPanel markup

2012-01-25 Thread Geoff Lancaster
You named the panel "rating" in your java but did not define "rating" in your html Sent from my iPhone On Jan 23, 2012, at 12:18 PM, Daniel Watrous wrote: > I've been trying to override the default RatingPanel markup, but I'm > having trouble. I found this: > http://apache-wicket.1842946.n4.na

Re: Wicket webshere 7

2012-01-25 Thread Geoff Lancaster
Filters work just fine. Did you set com.ibm.ws.webcontainer.invokefilterscompatibility= true In your web containers custom properties? Application servers -> server -> web container settings -> web container -> custom properties Sent from my iPhone On Jan 23, 2012, at 11:23 AM, matteus wrote: