Re: Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
in parallel and the main process to finish on time. I am still curious if there is a way to allow the request cycle to finish before starting the large process. I messed around with thread priorities, but is didn’t seem to matter. On 2016-05-27 16:39, Jered Myers <j...@maplewoodsoftware.com>

Re: Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
. On 2016-05-27 12:51, Jered Myers <j...@maplewoodsoftware.com> wrote: > I have a large background process that I need to execute when a user submits > a form. The background process can run while the user continues to use the > application. I am having trouble allowing the u

Processing large data while allowing request to return

2016-05-27 Thread Jered Myers
I have a large background process that I need to execute when a user submits a form. The background process can run while the user continues to use the application. I am having trouble allowing the user to continue working. How do I run this background process and allow the form submit to

Re: Wicket 6.22.0

2016-03-01 Thread Jered Myers
t 1:52 PM, Sven Meier <s...@meiers.net> wrote: > > Yes, please do. > > Sven > > On 01.03.2016 22:28, Jered Myers wrote: >> Okay great. Should I pull request for https://github.com/apache/wicket-site? >> <https://github.com/apache/wicket-site?> &g

Re: Wicket 6.22.0

2016-03-01 Thread Jered Myers
yes it is: > > http://mail-archives.us.apache.org/mod_mbox/www-announce/201602.mbox/%3CCAB63Y-d-1wB+kP6aGAJOEoMO4y1woFQG=A=ubqdqnis+m+4...@mail.gmail.com%3E > > Have fun > Sven > > > On 01.03.2016 19:19, Jered Myers wrote: >> Is Wicket 6.22.0 out? I thought I saw email st

Wicket 6.22.0

2016-03-01 Thread Jered Myers
Is Wicket 6.22.0 out? I thought I saw email stating it was, but the website is still showing 6.21.0. Jered - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail:

Wicket Presentation

2016-01-26 Thread Jered Myers
Is anybody planning any Wicket presentations at ApacheCon North America in May? -- Jered

Re: Lightbox2 Integration

2014-07-18 Thread Jered Myers
...@apache.org wrote: Thank you! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jul 17, 2014 at 7:05 PM, Jered Myers jer...@maplewoodsoftware.com wrote: I added the pull request for lightbox2. lightbox2-examples didn't need to be updated. Jered On 07/17

Re: Lightbox2 Integration

2014-07-17 Thread Jered Myers
Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Jul 17, 2014 at 12:14 AM, Jered Myers jer...@maplewoodsoftware.com wrote: The WicketStuff version of the JavaScript file was out of date. After I fixed the JavaScript both the thumbnail and full image displayed. The close

Re: Lightbox2 Integration

2014-07-16 Thread Jered Myers
to be done to fix WicketStuff is to copy down the resource files and to add the data-lightbox attribute to onComponentTag in LightboxLink. Jered On 07/14/2014 10:37 AM, Jered Myers wrote: I am having trouble getting the wicketstuff Lightbox2 plugin integration working. I am using the basic example

Lightbox2 Integration

2014-07-14 Thread Jered Myers
); tag.put(data-lightbox, getMarkupId()); } }.add(new Image(imageFile, res.getThumbnail(; -- Jered Myers

Re: Replace HTML Markup Dynamically

2014-03-27 Thread Jered Myers
Thank you Martin! I can confirm this work around is working well in my application! Jered Myers On 03/27/2014 03:19 AM, Martin Grigorov wrote: https://issues.apache.org/jira/browse/WICKET-5545 As a workaround you can replace com.test.help.HelpPage#onInitialize() with com.test.help.HelpPage

Re: Wicket with X-editable

2014-03-14 Thread Jered Myers
Reinaldo Barreiro wrote: IMHO this should be very easy to implement/integrate with Wicket: judging from the documentation. I haven't used the library myself, so I might be missing some nuances/caveats... On Tue, Mar 11, 2014 at 12:03 AM, Jered Myers jer...@maplewoodsoftware.comwrote: Has anybody

Wicket with X-editable

2014-03-10 Thread Jered Myers
with the X-editable in-line editable fields. -- Jered Myers

Re: AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread Jered Myers
I added this case to JIRA with a quickstart. It is a critical bug for my company. https://issues.apache.org/jira/browse/WICKET-5332 Jered On 08/27/2013 06:39 AM, Sven Meier wrote: Hi Jan, autoComplete is a little delicate in the ordering of javascript event registrations, so this might

Re: AutoCompleteTextField break in new wicket 6.10.0?

2013-08-27 Thread Jered Myers
. On 08/27/2013 07:53 AM, Jered Myers wrote: I added this case to JIRA with a quickstart. It is a critical bug for my company. https://issues.apache.org/jira/browse/WICKET-5332 Jered On 08/27/2013 06:39 AM, Sven Meier wrote: Hi Jan, autoComplete is a little delicate in the ordering

Button tag

2013-07-05 Thread Jered Myers
with modern browsers. -- Jered Myers

AjaxChannel Queues

2013-06-20 Thread Jered Myers
(AjaxRequestTarget target) { ... target.appendJavaScript(finishButtonWork( + resultJSON + );); } -- Jered Myers

Re: AjaxChannel Queues

2013-06-20 Thread Jered Myers
07:48 PM, Jered Myers wrote: I am having a few challenges with the AjaxChannel queuing up and interfering with actions a user is making while in ajax requests are in queue. When my AbstractDefaultAjaxBehavior hits its respond method, it adds a JavaScript call to the target. Does that JavaScript

ModalWindow not visible in Safari

2013-06-14 Thread Jered Myers
. It seems that WICKET-4948 was solving the same problem. Is this a problem between versions of Safari where the window.scrollTop is different between Windows and Mac? I don't have a Mac to test. -- Jered Myers

Re: Wicket panel - call jQuery

2013-03-21 Thread Jered Myers
I am not positive, but your selector appears wrong to me. Try response.render( DomReadyHeaderItem.forScript( $(\#menu\).find(\.tab-row\).addClass(\myClass\);, someId ) ); On 03/21/2013 07:50 AM, Ernesto Reinaldo Barreiro wrote: try with DomReadyHederItem to see if you get a different

Re: Validator Question

2013-03-06 Thread Jered Myers
Assuming you are extending AbstractFormValidator, you can store the components when you construct the validator like so... public DependantTextFieldValidator(TextField? textField1, TextField? dependantTextField) { if (textField1 == null) { throw new

Re: 404 error in nested ModalWindow IE 7

2013-03-04 Thread Jered Myers
This problem is not replicating in Wicket 1.4.21. On 03/01/2013 09:36 AM, Jered Myers wrote: I added this problem to JIRA. https://issues.apache.org/jira/browse/WICKET-5071 On 03/01/2013 08:29 AM, Jered Myers wrote: The page is stateless, so it has the same value being set

Re: 404 error in nested ModalWindow IE 7

2013-03-01 Thread Jered Myers
, 2013 at 12:43 AM, Jered Myers jer...@maplewoodsoftware.comwrote: It appears that the request is different between IE7 and Chrome once it hits the Jetty server with the inner modal window. modal.js is calling window.location.replace in load with the same value no matter what browser I am using

Re: 404 error in nested ModalWindow IE 7

2013-03-01 Thread Jered Myers
I added this problem to JIRA. https://issues.apache.org/jira/browse/WICKET-5071 On 03/01/2013 08:29 AM, Jered Myers wrote: The page is stateless, so it has the same value being set for settings.ie8_src and settings.src in getWindowOpenJavaScript(). It seems that only pages

Re: 404 error in nested ModalWindow IE 7

2013-02-28 Thread Jered Myers
PM, Jered Myers wrote: I am attaching a Quickstart that replicates the problem. On 02/25/2013 09:48 AM, Jered Myers wrote: I put a break point in CompoundRequestMapper at line 149 (the mapRequest function). Here are the results of request.getURL.toString(): IE7: - wicket/page?8 (first

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
/23/2013 04:53 AM, Martin Grigorov wrote: Hi, There was such issue before but as far as I remember it was fixed. Look in Jira. There is also a special code for IE7/8 in ModalWindow.java On Sat, Feb 23, 2013 at 2:40 AM, Jered Myers jer...@maplewoodsoftware.comwrote: The same problem happens in IE

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
to container to process this request I don't see that message when I run in Chrome. On 02/25/2013 09:13 AM, Jered Myers wrote: It looks like it was a bug fixed in a 1.5 release candidate ( https://issues.apache.org/jira/browse/WICKET-3982). The example in my link (http://www.wicket-library.com

Re: 404 error in nested ModalWindow IE 7

2013-02-25 Thread Jered Myers
/page?9 (nested ModalWindow) I will keep digging. Any help is appreciated! On 02/25/2013 09:17 AM, Jered Myers wrote: I do see this in my log if I turn on DEBUG in log4j: [08:43:03] DEBUG [org.apache.wicket.request.mapper.CompoundRequestMapper] - No compatible mapper found for URL 'page?6' [08:43

404 error in nested ModalWindow IE 7

2013-02-22 Thread Jered Myers
and then Open another modal dialog @ http://www.wicket-library.com/wicket-examples/ajax/modal-window -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h

Re: 404 error in nested ModalWindow IE 7

2013-02-22 Thread Jered Myers
The same problem happens in IE 8. Using development mode (F12) in IE9+ to lower the browser version will not replicate the problem. On 02/22/2013 03:23 PM, Jered Myers wrote: Wicket 6.5 I am getting a 404 error in IE 7 when I open a ModalWindow in a ModalWindow. Both windows use page

Chrome warning with CSSHeaderItem

2012-12-11 Thread Jered Myers
loads my ResourceReference like so: @Override public void renderHead(Component component, IHeaderResponse response) { response.render(JavaScriptHeaderItem.forReference(MyResourceReference.getInstance())); } What can I do to get rid of this warning? -- Jered Myers

Re: How to call a Wicket Ajax click event

2012-12-06 Thread Jered Myers
/2012 12:16 AM, Martin Grigorov wrote: Hi, Wicket 6 uses jQuery.on() to register the event listeners. If your AjaxSubmitLink listens on 'click' then jQuery('#theSubmitLinkId').triggerHandler('click') should do it. Also check the docs of jQuery#trigger On Thu, Dec 6, 2012 at 1:53 AM, Jered Myers

How to call a Wicket Ajax click event

2012-12-05 Thread Jered Myers
that the onclick attribute is no longer on my link and I am not sure how to call the events that Wicket has registered in the head. -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e

Re: How to call a Wicket Ajax click event

2012-12-05 Thread Jered Myers
the trigger on an AjaxSubmitLink different from a regular AjaxLink? On 12/05/2012 03:28 PM, Jered Myers wrote: Wicket 6.3 How do I call a click event on an AjaxLink from via jQuery or JavaScript? I have an AjaxLink that I have added to the page and after I run some JavaScript, I want

Re: Navigate through Wicket 6 tree

2012-11-02 Thread Jered Myers
it should be. Thanks for any help! On 11/02/2012 03:30 AM, Sven Meier wrote: Hi, when do you need this information? How did you do it in 1.5? Sven On 11/01/2012 10:34 PM, Jered Myers wrote: I am updating my trees from Wicket 1.5 to 6.2. I need to get the next node and previous node related

Re: Navigate through Wicket 6 tree

2012-11-02 Thread Jered Myers
? You can walk up your domain tree to search the 'previous' one. All you have to do, is re-applying the ordering when you iterate over the children. Sven On 11/02/2012 08:08 PM, Jered Myers wrote: The domain objects do know the parent, but they do not know what order they exist within

Re: Upgrade Advice

2012-10-22 Thread Jered Myers
in shorter increments with many small successes rather than a big huge effort with no success for possibly many days, depending on the size of your code, and then one big success at the end (but you'll probably still have some runtime only errors to tackle). Bill- On Fri, Oct 19, 2012 at 4:30 PM, Jered

Upgrade Advice

2012-10-19 Thread Jered Myers
I am working on migrating a large application from Wicket 1.4.18 to Wicket 6.x. Is it better to convert to 1.5 first and then to 6.x or to just go straight to 6.x? Thanks. Also, an early thanks to everybody who took the time to write the migration guides! Jered

Re: Custom XHTML tag

2012-07-13 Thread Jered Myers
This seems to be getting me where I want to go with the xhtml tag: http://sanityresort.blogspot.com/2011/08/creating-custom-wicket-tag-resolver.html On 07/13/2012 01:40 AM, Decebal Suiu wrote: Hi First, is it a good question. My solution use jqwicket tooltip and I touch both java and html

Custom XHTML tag

2012-07-12 Thread Jered Myers
class=requiredFirst Name/labelimg src=blah id=img323 title=This is the first name / input type=text name=balh:firstName id=firstName221 Thanks for taking the time to read this! Jered Myers

Re: Cannot detect ModalWindow cancel

2012-02-01 Thread Jered Myers
Thanks for your help! I will look into this. On 02/01/2012 11:34 AM, Chris Colman wrote: In trying to solve your problem of determining how the user closed the form you might find the ModalX library in Wicketstuff useful. ModalX (Modal eXtensions) for Wicket (part of Wickestuff) provides a

Re: Shibboleth Integration

2012-01-17 Thread Jered Myers
to was not secured by Shibboleth directly. The attribute for eppn had to be grabbed after returning from the Shibboleth login page and before redirecting to the home page. The file that tells Shibboleth what to secure was in httpd.conf in /etc/apache2. On 01/16/2012 04:28 PM, Jered Myers wrote: I am

Shibboleth Integration

2012-01-16 Thread Jered Myers
the user that is logging in for my Wicket application and all of the login is completed on the Shibboleth identity providers login page. -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Duplicate Markup Ids

2011-11-14 Thread Jered Myers
(repeater, myRowArrrayListModel) { protected void populateItem(ListItemMyDisplayRow item) { // Here is where I see the duplicate markup ids log.debug(item.getModelObject().getLabelComponent().getMarkupId()); item.add(item.getModelObject().getLabelComponent()); } } -- Jered Myers

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
The HTML markup is always span wicket:id=headerLabel/span, so I think the answer is no. I end up with a markup id like headerLabel8f. On 11/14/2011 12:54 PM, Sven Meier wrote: Do you have markup ids pre-defined in your html markup? Sven On 11/14/2011 09:39 PM, Jered Myers wrote: I am

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
I forgot to post Wicket version 1.4.18 On 11/14/2011 02:07 PM, Jered Myers wrote: The HTML markup is always span wicket:id=headerLabel/span, so I think the answer is no. I end up with a markup id like headerLabel8f. On 11/14/2011 12:54 PM, Sven Meier wrote: Do you have markup ids pre

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
I found the problem. It was not a Wicket bug as expected. Thanks for taking the time to look at this anyway. On 11/14/2011 03:36 PM, Jered Myers wrote: I forgot to post Wicket version 1.4.18 On 11/14/2011 02:07 PM, Jered Myers wrote: The HTML markup is always span wicket:id=headerLabel/span

Re: Duplicate Markup Ids

2011-11-14 Thread Jered Myers
Thomerson http://wickettraining.com Need a CMS for Wicket? Use Brix! http://brixcms.org On Nov 14, 2011 7:18 PM, Jered Myers jer...@maplewoodsoftware.com wrote: I found the problem. It was not a Wicket bug as expected. Thanks for taking the time to look at this anyway. On 11/14/2011 03:36

PageMap Reuse

2011-09-08 Thread Jered Myers
I'm using Wicket 1.4.18. I'm having trouble moving between browser tabs in my application as I am opening a duplicate tab. Here is an example: 1. The user starts on browser tab A via a mounted page (e.g. www.mysite.com/MyApp/PageA) 2. The user clicks on a bookmarkable link (with popup

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
It appears the initial window name is wicket-wicket:default. The other tab windows match the PageMap name. Thanks for the help! I will explore a way to manipulate the window name. On 9/8/2011 3:16 PM, Dan Retzlaff wrote: In step #5, what page map name do you use in your popup settings?

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
Do you know where I can set the window name of the first window? I can use JavaScript to reset it, but I am not sure if this will mess up the PageMap process. On 9/8/2011 4:12 PM, Dan Retzlaff wrote: Check out PopupSettings#getPopupJavaScript(). If the pagemap name is null it uses . Since

Label tag wicket:for question

2011-08-12 Thread Jered Myers
I am using a label tag with wicket:for (Wicket 1.4.18) and the text of the label is not replacing as I expect. I am using a label tag in my HTML like so: label wicket:for=firstName span class=label-textName/span /label input type=text wicket:id=firstName / In my Java code:

Re: Label tag wicket:for question

2011-08-12 Thread Jered Myers
Thanks that worked perfectly! On 08/12/2011 01:28 PM, Igor Vaynberg wrote: this has been changed in later commits, use wicket:labelName/wicket:label instead ofspan class=label-text -igor On Fri, Aug 12, 2011 at 1:05 PM, Jered Myers jer...@maplewoodsoftware.com wrote: I am using a label

Re: Graceful Session Expiry

2011-06-09 Thread Jered Myers
I have done this in the past (not in Wicket). The problem I ran into was JavaScript alerts stopping the JavaScript timer thread until the user closed the alert box. I used a modal window for my warning message to prevent that problem. On 6/9/2011 2:25 AM, Martin Grigorov wrote: Yep, this

JavaScript form submit

2011-05-26 Thread Jered Myers
to do this inside a Panel, so I don't want to post the form to another page if I don't have to do so. Thanks for any help! -- Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands

Re: JavaScript form submit

2011-05-26 Thread Jered Myers
); ... On 5/26/2011 4:07 PM, Jered Myers wrote: I am having trouble figuring out how to submit a form that is dynamically created via JavaScript. The page uses JavaScript to create a list of commands inside a form element like so: form input type=hidden name=ActionCd value=Move / input type

Re: BookmarkablePageLink with PopupSettings

2011-05-24 Thread Jered Myers
, May 23, 2011 at 11:48 PM, Jered Myers jer...@maplewoodsoftware.comwrote: I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can prevent this from happening? When I remove the PopupSettings the constructor

Re: BookmarkablePageLink with PopupSettings

2011-05-24 Thread Jered Myers
Setting a pageMapName in PopupSettings fixed this problem. On 5/24/2011 9:16 AM, Jered Myers wrote: I looks like this problem is not replicating in a Quickstart. I thought it might be an expected behavior of some sort as removing the PopupSettings fixed my problem. On 5/23/2011 10:47 PM

BookmarkablePageLink with PopupSettings

2011-05-23 Thread Jered Myers
I am attempting to open a new browser tab to a bookmarkable page. The constructor of my page is being called twice. Is there a way I can prevent this from happening? When I remove the PopupSettings the constructor is only called once, but the page does not open in a new tab. Here is an

Re: wicket datatable to excel

2011-04-08 Thread Jered Myers
I haven't used Apache POI, so that may be the way to go. For my exports I use JExcel (http://jexcelapi.sourceforge.net/resources/faq/). With JExcel you will need to loop through the cells in you data table and create the Excel cells to match. There is example code in the FAQ I linked. On

setObject with invisible panel

2011-03-25 Thread Jered Myers
the style attribute. Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Trouble with DropDownChoice

2011-03-25 Thread Jered Myers
You can create a simple PropertyModel to hold the value your form is trying to set. Here is an example: public Pageextends WebPage { private List letters = Arrays.asList(new String[] {A,B,C })); public String selected =B; public Page() { Form form =new Form(form);

Color Picker

2011-03-22 Thread Jered Myers
component. Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Submit Form from AjaxFormChoiceComponentUpdatingBehavior

2010-12-20 Thread Jered Myers
RatioInteger(two, new ModelInteger(2)); group.add(mode2); RadioInteger mode3 = new RatioInteger(three, new ModelInteger(3)); group.add(mode3); Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: Submit Form from AjaxFormChoiceComponentUpdatingBehavior

2010-12-20 Thread Jered Myers
Thanks, that worked! On 12/20/2010 2:36 PM, Jeremy Thomerson wrote: Probably something like this should work: target.appendJavascript(Wicket.$(' + getForm().getMarkupId() + ').submit()); On Mon, Dec 20, 2010 at 4:34 PM, Jered Myers jer...@maplewoodsoftware.com wrote: Does anybody know

Re: wickert:id changes to attribute

2010-10-06 Thread Jered Myers
errors On Oct 4, 2010 7:49 PM, Jered Myersjer...@maplewoodsoftware.com wrote: My markup look... -- Jered Myers 509-252-3550 x 109 Programmer/Analyst Maplewood Software - To unsubscribe, e-mail: users-unsubscr

wickert:id changes to attribute

2010-10-04 Thread Jered Myers
My markup looks like this: ... td div wicket:id=canvasPanelstuff/div /td ... When I render the code and swap in another panel via canvasPanel.replaceWith(newPanel);, the page source looks like this: ... td canvasPanel= new panel markup /td ... Any ideas on why this would happen? I looked

Where to post wicket jobs

2010-09-30 Thread Jered Myers
I am looking for a good place to post small jobs (e.g. creating custom UI components) using Wicket like RentACoder. Can someone please point me to a good site or the proper mailing list for this. Thanks! Jered - To

Wicket Rich Text Editor with YUI 2

2010-09-30 Thread Jered Myers
the control in a Wicket manner (e.g. see DatePicker), so that it can be used as easily as Wicket's TextArea. The job, with the full details, is posted on RentACoder at http://www.vworker.com/RentACoder/misc/BidRequests/ShowBidRequest.asp?lngBidRequestId=1507539. -- Jered Myers Maplewood Software

Nesting Links

2010-04-12 Thread Jered Myers
}; } parent.add(child); Jered Myers - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Nesting Links

2010-04-12 Thread Jered Myers
= true;}; tag.put(onclick, stopBubble + script); } Jered Myers writes: I need to be able to nest links and have the link clicked on trigger, but not its parent. I am not sure how to do this with a regular Link. Right now, I believe that I have a problem with event bubbling. The parent link

Re: Clear feedback panel

2010-03-05 Thread Jered Myers
You can try grabbing the FeebackMessages via Session.get().getFeedbackMessages() or Session.get().getFeedbackMessages().messages(IFeedbackMessageFilter) and then call FeedbackMessage.markRendered(). On 3/5/2010 1:34 PM, Anna Simbirtsev wrote: It does not work for some reason.

Re: Cannot get default invisible TextField's ModelObject ?

2010-01-20 Thread Jered Myers
What do you mean by cannot get their values? I am wondering if the model's value is not showing in the TextField when it become visible or if the model's value is not getting set based on what you type into the TextField. If your problem is that the value you type into the TextField is not

Popup New Window After Submit

2010-01-18 Thread Jered Myers
)); // I want the response in a new window setResponse(new ReportPage(params)); } -- Jered Myers Programmer/Project Analyst jer...@maplewoodsoftware.com mailto:jer...@maplewoodsoftware.com Maplewood Software 508 W. 6th Ave, Suite 900 Spokane, WA 99204 (509) 252-3550 ext. 109

Javascript Resources Loading Slow

2009-12-18 Thread Jered Myers
I just converted my code from Wicket 1.4m2 to 1.4.4 and am see performance problems with resource load times. For example, when I load a page that has a LinkTree in it, the browser takes a long time (20 - 30 seconds) to load