Possible BUG - discrepancy in component.onBeforeRender and IBehavior.beforeRender.

2008-05-22 Thread gumnaam23
The following statement if (!component.isAuto() getFlag(FLAG_RENDERING)) in Component- checkHierarchyChange() returns false when a Behavior is added to the Component.onBeforeRender() phase, but returns true if a Behavior is added by another Behavior as part of it's beforeRender() phase.

Re: [PROPOSAL] wicketstuff SVN reorganization...

2008-05-21 Thread gumnaam23
20, 2008 at 3:35 PM, gumnaam23 [EMAIL PROTECTED] wrote: But then, the wicketstuff maven repository is never deployed with these builds following the wicket releases. Everything in the maven repository follows wicket snapshot. This is really a pain, I have to maintain a private wicketstuff code

Re: [PROPOSAL] wicketstuff SVN reorganization...

2008-05-20 Thread gumnaam23
But then, the wicketstuff maven repository is never deployed with these builds following the wicket releases. Everything in the maven repository follows wicket snapshot. This is really a pain, I have to maintain a private wicketstuff code base, just to give the projects proper release #, and

Re: Back button retrieving cached data even with proper headers.

2008-05-16 Thread gumnaam23
Adding no-store to the Cache-Control header did the trick. According to Page.setHeaders() javadoc , Wicket already adds cache related headers response.setHeader(Pragma, no-cache); response.setHeader(Cache-Control, no-cache, max-age=0, must-revalidate) Is there any particular reason why no-store

Re: Back button retrieving cached data even with proper headers.

2008-05-16 Thread gumnaam23
takes a while because it connects back to the server. A back button shouldnt do that. I know we in wicket wants it to do it but from an end user perspective it is a horrible experience. johan On Fri, May 16, 2008 at 11:01 AM, gumnaam23 [EMAIL PROTECTED] wrote: Adding no-store

Back button retrieving cached data even with proper headers.

2008-05-15 Thread gumnaam23
My back button, doesn't send request back to the server. I can see that the proper cache invalidating headers are set by the response. This is happening on firefox and IE, and using either tomcat or jetty. Any clues ? -- View this message in context:

Passing around a component ref. (specifically BreadCrumbBar)

2008-04-29 Thread gumnaam23
I have a specific question and a generic question based on it. I have several Panels added to my BreadCrumbPanels, these panels themselves extend the Panel class, and will contain BreadCrumbPanelLinks , to navigate down the hierarchy. My question is how do I pass the BreadCrumbBar from a

Re: How to design tables that support 50-100K rows?

2008-04-17 Thread gumnaam23
I have done this, and it works quite nicely. Be warned though, the biggest bottle neck in this, is the loading of the data from database. So for best performance, you should read only one page's worth data at a time from your DB (in your case 500). If you load the whole data, and use some thing

Jumping in Breadcrump Hierarchy

2008-04-15 Thread gumnaam23
How can I jump in breadcrumb hierarchy. Say I have some thing like Home/Schedules/Events Home/Maintenance Schedules/Downtimes I want to be able to jump to any of these breadcrumb links from any where. For that I have a Page with 2 divs. One div contains BreadcrumbPanelLinks to each of the