Re: is there any way to externalize wicket-event.js

2011-06-18 Thread Joe Hudson
they put a caching proxy infront of the app server and tell it to cache js, css, and other staticy files -igor On Fri, Jun 17, 2011 at 8:18 AM, Joe Hudson joe...@gmail.com wrote: Hi, I for looking at ways of optimizing a wicket application.  And, while a 304 is returned for wicket-event.js

is there any way to externalize wicket-event.js

2011-06-17 Thread Joe Hudson
Hi, I for looking at ways of optimizing a wicket application. And, while a 304 is returned for wicket-event.js requests, the resource content is returned as well. Is there any optimizations that can be applied here? Ideally I would like to host these files (and probably change their name to

Re: strange problem with redirect to buffer and URL encoded query string

2010-11-08 Thread Joe Hudson
Vaynberg igor.vaynb...@gmail.com wrote: trace the java side to see what is encoding the url. it may be a number of things, but since its only happennig to you its probably something in your environment. also what version of wicket are you running? -igor On Fri, Nov 5, 2010 at 8:01 AM, Joe Hudson

strange problem with redirect to buffer and URL encoded query string

2010-11-05 Thread Joe Hudson
Hi, I am using a AjaxFallbackButton within a form. In this case the response is saved to a buffer in the session and supposed to be retrieved in the next page request. The problem that I am facing is that the second request is providing URL encoded query string and I can't figure out why...

RE: sanity check request for fix regarding the dreaded PageExpiredException

2010-09-28 Thread Joe Hudson
want to run against an older version of the page because they depend on the component hierarchy that existed then, etc. -igor On Fri, Sep 24, 2010 at 7:56 AM, Joe Hudson joe.hud...@clear2pay.com wrote: Hi, I know there have been several existing topics around this issue (http://apache-wicket

sanity check request for fix regarding the dreaded PageExpiredException

2010-09-24 Thread Joe Hudson
the fix would not be appropriate for a stateless application). Thanks Joe Hudson

rendering Wicket components to HTML

2010-08-16 Thread Joe Hudson
Hi, First of all, before I get flamed - I've seen many topics about this since I've been looking into this: http://www.mail-archive.com/users@wicket.apache.org/msg27512.html http://www.danwalmsley.com/2008/10/21/render-a-wicket-page-to-a-string-for-html-email/

RE: any good ideas about how to add a confirm check before leaving a page?

2010-08-11 Thread Joe Hudson
-10 at 16:08 +0200, Leszek Gawron wrote: On 2010-08-10 15:11, Joe Hudson wrote: Thank you very much for the response but my issue is not a simple as this Say I have a page with navigation links and the page doesn't know about the navigation links because they are controlled

RE: any good ideas about how to add a confirm check before leaving a page?

2010-08-10 Thread Joe Hudson
Thank you very much for the response but my issue is not a simple as this Say I have a page with navigation links and the page doesn't know about the navigation links because they are controlled by functionality provided in the superclass. What I am trying to do is deal with the case where

any good ideas about how to add a confirm check before leaving a page?

2010-08-05 Thread Joe Hudson
Hi, I'm wondering if anyone has had to tackle this before and might have any advice. I'm working on an application that needs to do a confirm before leaving a page if the use clicked on another link in the application. Does anyone have any ideas about how this could be done? Thank you very

how to have an html id in markup and support ajax behavior?

2009-10-17 Thread Joe Hudson
Hello, I need a component to have an html id that I set in markup because I'm referencing it in other places. I also need to have the setOutputMarkupId(true) on the component because I need to support ajax behaviors. The problem that I am facing is that when I call setOutputMarkupId(true)

what is the proper way to handle success message within a feedback panel

2009-10-08 Thread Joe Hudson
Hello, It seems that the only levels of feedback message are: -DEBUG -ERROR -FATAL -INFO -UNDEFINED -WARNING I'm just wondering what the best practice is for success messages are. Thanks. Regards, Joe

RE: is it possible to somehow create a url to return the contents of a panel

2009-10-01 Thread Joe Hudson
. this could be used to return the contents. -- Jeremy Thomerson http://www.wickettraining.com On Wed, Sep 30, 2009 at 8:10 PM, Joe Hudson joe.hud...@clear2pay.comwrote: Hi - hopefully I can explain this clearly... I understand that I can use the AjaxEventBehavior to refresh the contents

RE: is it possible to somehow create a url to return the contents of a panel

2009-10-01 Thread Joe Hudson
overriding onComponentTag, onRender, 3) Given an AjaxRequestTarget, is there any way I can write out the HTML response (as opposed to adding components for rendering)? you can append javascript to response... On Thu, Oct 1, 2009 at 9:11 AM, Joe Hudson joe.hud...@clear2pay.com wrote: Thank you

is it possible to somehow create a url to return the contents of a panel

2009-09-30 Thread Joe Hudson
Hi - hopefully I can explain this clearly... I understand that I can use the AjaxEventBehavior to refresh the contents of any components that I have on the screen or add new components. I am trying to use a tooltip to display additional details for grid data. I plan to use a tooltip library

is it possible to include script resources using the HeaderContributor above the WebPage component script references

2009-08-31 Thread Joe Hudson
Hello, I would like for the script included using a HeaderContributor to be above script references within the WebPage component head node. Is this possible. The reason I would like to do this is because I would like to be able to reference code from the script file which is included using

using behaviors as borders - how to?

2009-08-27 Thread Joe Hudson
Hello, I would like to add a behavior to a component which alters the HTML output related to that component. I know that you can use setComponentBorder but I saw a posting that mentioned behaviors were the more appropriate way to do this as explicit component borders might become deprecated.

RE: using behaviors as borders - how to?

2009-08-27 Thread Joe Hudson
Thank you Peter. That link was extremely helpful! Joe -Original Message- From: Peter Thomas [mailto:ptrtho...@gmail.com] Sent: Thursday, August 27, 2009 8:12 AM To: users@wicket.apache.org Subject: Re: using behaviors as borders - how to? On Thu, Aug 27, 2009 at 5:31 PM, Joe Hudson

RE: javascript effects before an ajax call

2009-08-19 Thread Joe Hudson
How can you make the script sources that you reference in your web page show up after the component wicket script includes? (assuming you don't want to do this inline) I would like to override the Wicket.replaceOuterHtml function because I would like to do some jquery dom post processing.

how to include head resources below generated component additions to head

2009-08-12 Thread Joe Hudson
Hello, I would like to override some of the styles of components I am using in my page. However, when I include a CSS resource at the head of my WebPage component, the incude occurs above all of the component includes. Is there any way I can specify for an include to be below component