[Wicket-user] Sessionless Wicket?

2007-05-02 Thread Jeremy Thomerson
models so that the objects are not held in memory? Any other suggestions? Thank you! Jeremy Thomerson texashuntfish.com - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express

Re: [Wicket-user] Sessionless Wicket?

2007-05-03 Thread Jeremy Thomerson
it. -Matej On 5/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: I know that I read somewhere that there is, or is going to be, a way to run your wicket application without creating a session (until absolutely necessary). We have a site that has mostly been converted to Wicket now

Re: [Wicket-user] Sessionless Wicket?

2007-05-04 Thread Jeremy Thomerson
Should I be concerned that the numbers in the following URLs jump so much? This is on a page signed in as an admin, where I do have some callback links that are stateful. On one page view, here is an admin link:

Re: [Wicket-user] Difficulty with TextFields in ListView

2007-05-06 Thread Jeremy Thomerson
That sounds like something I should be concerned about - do you agree? Thanks, Jeremy On 5/5/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Martijn Dashorst: Basically you need to setReuseItems(true) or use a repeater. Confirmed. Be careful that ListView is not industrial strength

Re: [Wicket-user] Difficulty with TextFields in ListView

2007-05-06 Thread Jeremy Thomerson
Sorry - I somehow replied to the wrong thread. My comment has no bearing on this thread. Thank you, Jeremy Thomerson -- sent from a wireless device -Original Message- From: Martijn Dashorst [EMAIL PROTECTED] To: [EMAIL PROTECTED]; wicket-user@lists.sourceforge.net Sent: 5/6/07 3:36 PM

[Wicket-user] Best place to add components to a page?

2007-05-06 Thread Jeremy Thomerson
and PageParameters for everything. Thoughts? Thank you, Jeremy Thomerson - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data

Re: [Wicket-user] Bookmarkable images

2007-05-07 Thread Jeremy Thomerson
+ is not a valid ID); } IFooService svc = getBean(IFooService.class); return new PageRequestTarget(new FooPage(svc.findByID(id))); } Jeremy Thomerson On 5/7/07, RĂ¼diger Schulz [EMAIL PROTECTED] wrote: Hello everybody, in my application, I'm currently

Re: [Wicket-user] Remote Address

2007-05-07 Thread Jeremy Thomerson
not proxied. Jeremy Thomerson On 5/7/07, howzat [EMAIL PROTECTED] wrote: Thanks Mathias, that's exactly what I was after and it works. Looking at the bigger picture, is it considered to be reasonable practice in Wicket to cut through all its high-level abstractions, right down to the wire

Re: [Wicket-user] Best place to add components to a page?

2007-05-08 Thread Jeremy Thomerson
a Page instance, correct? As it will only be called once the strategy has confirmed that it matches, and the page created will be the one used to be rendered? Just wanted to make sure that I wasn't creating pages unnecessarily. Thanks! Jeremy Thomerson On 5/7/07, Igor Vaynberg [EMAIL PROTECTED

Re: [Wicket-user] How do I do this - several similar links to another page

2007-05-09 Thread Jeremy Thomerson
Igor, I notice that you call detach() on your models in this example. I have searched, but can not find where it is written when (or if) we should be calling detach ourselves. I'm using implementations of LoadableDetachableModel for my models that hold DB-backed domain objects. I don't want

Re: [Wicket-user] programmatic access to a wicket site

2007-05-09 Thread Jeremy Thomerson
What are they going to use to call it? wget? perl? etc Jeremy Thomerson On 5/9/07, Lowell Kirsh [EMAIL PROTECTED] wrote: One of the requirements of the site that I'm building is that oneof the pages be exposed programatically so that other programs can 'call' it. They would know

[Wicket-user] Stateless Forms?

2007-05-21 Thread Jeremy Thomerson
to have a form that submits back to a stateless URL? Then, if the session or pagemap had expired, it wouldn't matter, because it's taking them to another stateless page. Thank you! Jeremy Thomerson - This SF.net email

[Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-05-29 Thread Jeremy Thomerson
://;) || location.startsWith(/)) Thoughts? Jeremy Thomerson - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-02 Thread Jeremy Thomerson
and makes it where I would have to inject the actual domain into my application to be able to accomplish this. Any other input? Jeremy Thomerson On 5/30/07, Al Maw [EMAIL PROTECTED] wrote: Relative URLs are good - they make the page work properly behind proxy servers. Why do you want an absolute

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-03 Thread Jeremy Thomerson
assuming this is what you meant as well. I'll look at the JIRA issue sent in a later reply and see if I can assist. Jeremy Thomerson On 6/3/07, Eelco Hillenius [EMAIL PROTECTED] wrote: I think if someone uses an absolute slash - it should treat it as absolute. That is what the standard

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-03 Thread Jeremy Thomerson
relative to my domain root. I opened JIRA https://issues.apache.org/jira/browse/WICKET-612 for this. I will attach a patch to it as soon as I can get my environment set up to work on Wicket. Jeremy Thomerson On 6/3/07, Eelco Hillenius [EMAIL PROTECTED] wrote: Sort of - but Wicket doesn't have

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-03 Thread Jeremy Thomerson
Patch is attached to https://issues.apache.org/jira/browse/WICKET-612 Jeremy Thomerson On 6/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: It's what was done in 1.2.6, but no longer in 1.3. 1.3 converts it to a path relative to your context. Sorry, my last post was probably confusing

[Wicket-user] Fwd: [jira] Updated: (WICKET-634) Need AjaxFallbackSubmitButton

2007-06-10 Thread Jeremy Thomerson
it and implemented it, I figured I would contribute it. It seems reasonable to have, in line with the AjaxFallbackLink that is included in Wicket now. -- Jeremy Thomerson jthomerson AT users DOT sourceforge DOT net -- Forwarded message -- From: Jeremy Thomerson (JIRA) [EMAIL PROTECTED] Date

Re: [Wicket-user] IDataProvider.size()

2007-06-10 Thread Jeremy Thomerson
, but I don't think memory will be an issue there. -- Jeremy Thomerson jthomerson AT users DOT sourceforge DOT net On 6/10/07, Lec [EMAIL PROTECTED] wrote: Why would want to cache the result? what happened if the results returned are big and if that s not enought, what will happened if 5000

Re: [Wicket-user] Bug in 1.3? HeaderContributor.forCss(String)

2007-06-12 Thread Jeremy Thomerson
servers, etc. Let me know if anyone else needs assistance in this. Jeremy Thomerson On 6/12/07, Gwyn Evans [EMAIL PROTECTED] wrote: I don't know, but surely that's not relevent? Jeremy's after accessing an 'external' style-sheet in a 'static' folder in a different context but on the same

Re: [Wicket-user] how to provide custom messages for validation

2007-06-13 Thread Jeremy Thomerson
(to share common layout / functionality)) YourApp.properties Of course, it'll also search with the appropriate extension for i18n if you have other language files in their and are usin a different locale. Jeremy Thomerson -- sent from a wireless device -Original Message- From: Prashant

Re: [Wicket-user] wicket-contrib-gmap2

2007-06-18 Thread Jeremy Thomerson
converting to Wicket: https://www.theatdgroup.com/app/webroot/index.cfm?event=dealer-finder Thanks! Jeremy Thomerson On 6/16/07, Al Maw [EMAIL PROTECTED] wrote: I really think you guys should get together and do this, right now while the project still has lots of momentum and the code

Re: [Wicket-user] wicket-contrib-gmap2

2007-06-18 Thread Jeremy Thomerson
); target.addComponent(lngLbl); target.addComponent(mapPanel); } } }); Thank you! Jeremy Thomerson On 6/13/07, Martin Funk [EMAIL PROTECTED] wrote: Hi, may I draw your attention to a little project I was allowed to add

Re: [Wicket-user] wicket-contrib-gmap2

2007-06-18 Thread Jeremy Thomerson
); target.addComponent(lngLbl); target.addComponent(mapPanel); } } }); Jeremy Thomerson On 6/18/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: With GMap2, how do I remove an overlay in a click event? I need to be able to do

Re: [Wicket-user] How to get HTML source code from a wicket page

2007-07-01 Thread Jeremy Thomerson
this because a lot of things in my app depend on getSession() being my sub-class of WebSession, and getApp() being my sub-class of WebApp. So, what to do? Any suggestions? Should I just mount this form specifically to a request strategy and do it more like JBQ's example? Thank you! Jeremy Thomerson On 6

[Wicket-user] Redirect form to a request target rather than a page?

2007-07-02 Thread Jeremy Thomerson
getRequestCycle().setRequestTarget(IRequestTarget), exactly as I am above. Thank you! Jeremy Thomerson - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML

[Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
Apache, using mod_proxy, just like all of the other Wicket apps that I have deployed. I know there's just a setting I'm missing somewhere... any ideas? Thanks! Jeremy Thomerson - This SF.net email is sponsored by DB2 Express

Re: [Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
with tomcat or apache config. Thank you! Jeremy Thomerson On 7/3/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: I already have several Wicket applications deployed, some that don't require a session (all extranet - non-signin, bookmarkable

Re: [Wicket-user] jsessionid and page expired

2007-07-03 Thread Jeremy Thomerson
I found it - need to use ProxyPassReverseCookiePath, which means I also need to upgrade to Apache 2.2 (I'm on 2.0.51). Thanks Igor!! Jeremy On 7/3/07, Jeremy Thomerson [EMAIL PROTECTED] wrote: Okay - you helped me shed some good light on this... Was there a change to the way the cookies

Re: [Wicket-user] Advice needed on custom star rating control

2007-07-03 Thread Jeremy Thomerson
the star rating, etc). Hope this helps a little. Sorry I didn't have more time for a better example. Jeremy Thomerson On 7/3/07, Tauren Mills [EMAIL PROTECTED] wrote: I need to allow users to rate things on a site, but as far as I can tell, none of the star rating controls I've seen do everything I