Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Igor Vaynberg
if you would like you may start a wicket-stuff project to build up some of these components. that way the committers and others interested can also contribute.let me know if you would like to do that.-Igor On 3/29/06, Joshua Lim <[EMAIL PROTECTED]> wrote: thanks igor, that is very close to what I n

Re: [Wicket-user] Wicket Include vs. RequestDispatcher.include

2006-03-29 Thread Nili Adoram
How about extending Include as follows: public class LightInclude extends Include { public LightInclude(String id, String model, ServletRequest request, ServletResponse response) { this.request = request; this.response = response; } protected String importUrl(String url) {

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
thanks igor, that is very close to what I need, and the insight too into the backing list model... I think that would be useful, I do want another, which will only take 1 single value. perhaps a limit on the list ? basically I am trying to build up more widgets to make answering surveys interestin

[Wicket-user] FrameworkSettings.getVersion() seems to be buggy

2006-03-29 Thread jan_bar
Hi, I tried FrameworkSettings.getVersion(), but it seems to read wicket.properties of my application instead from wicketXX.jar. Does it work for you? Thanks, Jan --- This SF.Net email is sponsored by xPML, a groundbreaking scripting languag

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Igor Vaynberg
On 3/29/06, Joshua Lim <[EMAIL PROTECTED]> wrote: and the other a editable div like "tiddywiki" http://tiddlywiki.com but also dragable... take a look at AjaxEditableLabel, its probably not exactly what you want, but it will give you an idea of how it can be done. there is a good impl of draggable

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
Hi Eelcoyea, I think the slider out of bound is defined by the div in the css. I intend to look into thatthis morning.. and also making it more configurable like being able to define how many intervals,the length etc that kind of thing ... I like your idea of it being able to drop inside a form cou

Re: [Wicket-user] Extra markup while creating listview

2006-03-29 Thread Igor Vaynberg
most times you do want the listitem's markuplike .or -Igor On 3/29/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: That sort of worked (rendered "wicket:id="list" tags, but not wicket:id="item" tags). However in case of the DOJO-based tree, since tags for each node (along with a bunc

Re: [Wicket-user] Extra markup while creating listview

2006-03-29 Thread Ramnivas Laddad
That sort of worked (rendered "wicket:id="list" tags, but not wicket:id="item" tags). However in case of the DOJO-based tree, since tags for each node (along with a bunch of attribute) need to be written, I needed the opposite. HOWEVER, your suggestion gave me an idea for a variation and it wo

[Wicket-user] Type Enhancers

2006-03-29 Thread Jonathan Locke
For anyone who was following my idea about "mixed types" which Igor posted to the user list recently, I've changed the name of it to "type enhancers" and written a micro-whitepaper on it which you can read here.  If anyone has any comments, I'd be interested in your feedback.  Thanks!Best,    Jona

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Eelco Hillenius
Thanks Joshua. There is still a weird thing: it seems that the slider can be dragged out of bounds. See http://papernapkin.org/pastebin/app/view/86 How do you plan on using the component? Do you plan on coupling it to a textfield and use that for form submission? I was planning (didn't get to the

Re: [Wicket-user] Extra markup while creating listview

2006-03-29 Thread Martijn Dashorst
Change the markup to:and your listview:populateItem(Item item) {     item.add(new Label("item").setRenderBodyOnly(true));}Names may have been changed, due to negligence of my memory.MartijnOn 3/30/06, Ramnivas Laddad <[EMAIL PROTECTED]> wrote: Hi,I am continuing my attempt to create a DOJO-based t

[Wicket-user] Extra markup while creating listview

2006-03-29 Thread Ramnivas Laddad
Hi, I am continuing my attempt to create a DOJO-based tree (Thanks Igor for the urlFor() tip). Currently, I am facing a problem of extra markup emitted in a listview. I think there is something wrong with my code, but can't quite figure out what. I am using 1.2-beta2. Here is a short progr

Re: [Wicket-user] TabbedPanel, InputForm and submit

2006-03-29 Thread Eelco Hillenius
A different approach is to use ajax enabled fields so that everytime you leave an input field your changes are immediately applied to the models. That way it doesn't matter at all which link you click anywhere. Eelco On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > well, this is pretty tri

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Igor Vaynberg
yep, thats trunkOn 3/29/06, Arto Arffman <[EMAIL PROTECTED]> wrote: hmm, i'm using svnroot/wicket/trunk/wicket, if that's what you mean 2006/3/29, Arto Arffman <[EMAIL PROTECTED]>: OK, I'll check if it's my mistake or is there really a bug.   (latest head, don't know what "off trunk" means)  200

Re: [Wicket-user] Caching content

2006-03-29 Thread Igor Vaynberg
you can cache those calculations in a modelhave a CachingModel that decorates another model and applies caching strategies.streaming html is fast in wicket, not sure if caching the actual html output will help you much. -IgorOn 3/29/06, Alexander Lohse <[EMAIL PROTECTED]> wrote: Hi John,thank you f

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Arto Arffman
hmm, i'm using svnroot/wicket/trunk/wicket, if that's what you mean 2006/3/29, Arto Arffman <[EMAIL PROTECTED]>: OK, I'll check if it's my mistake or is there really a bug.   (latest head, don't know what "off trunk" means)  2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>: it should and i though

Re: [Wicket-user] Caching content

2006-03-29 Thread Alexander Lohse
Hi John, thank you for sharing your thoughts. I am just in the same process/ needs. I have a PHP-Application that grew into too much spagetthi- code over the years, and we have a strong need for a compiled, typed language to preserve stability and be able to continue growing. This is a medium

Re: [Wicket-user] Links opening Borders in an AJAX-like

2006-03-29 Thread Igor Vaynberg
this will be very specific to each application, you can do this yourself easily enough. add an ajax link that replaces the content area with a panel, and updates the panel.this is kinda like the TabbedPanel/AjaxTabbedPanel works, take a look at that. -IgorOn 3/29/06, Bruno Borges <[EMAIL PROTECTED]

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Igor Vaynberg
yes, the page will cascade ondetach() down its hierarchy.-IgorOn 3/29/06, Arto Arffman <[EMAIL PROTECTED] > wrote:Yes, that's the way it should be. First it sounded a bit unconsistent but there could be situations where page.onDetach() needs to be called. eg. if one of the rendered components uses

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Arto Arffman
Yes, that's the way it should be. First it sounded a bit unconsistent but there could be situations where page.onDetach() needs to be called. eg. if one of the rendered components uses page's model. On the other hand, they could use for example form's model through compound model. Is onDetach() cal

[Wicket-user] Getting Page After Intercept Page

2006-03-29 Thread Andrew Berman
Is there a way to get the page the intercept page is supposed to go to inside the intercept page?  The PageMap has no method which allows me to get the continuation url, but I need some way of getting the Page after the intercept page because I want something to show up only if the continuation pag

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Igor Vaynberg
yeah, page.onattach will not be called, only the components that are added to the target.page.ondetach gets called at the end of any request cycle, i dont think its a problem because unless the page has been attached it should be a noop, and its a good safety net. -IgorOn 3/29/06, Arto Arffman <[EM

Re: [Wicket-user] Form submit from outside Wicket

2006-03-29 Thread Johan Compagner
i would submit to a bookmarkable page yes.That would be the easiest thing to do.johanOn 3/29/06, Sven Meier < [EMAIL PROTECTED]> wrote:How would you handle a submit of a form that originates from outside of Wicket?Let me explain:In many web applications some forms (e.g. 'search a product') arerepli

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Arto Arffman
I think it's mistake. I was relying on Page's onAttach(). I suppose its only those components that get rendered, am I rigth?   Funny though, Page.onDetach() is called, but Page.onAttach() is not.  2006/3/29, Arto Arffman <[EMAIL PROTECTED]>: hmm, i'm using svnroot/wicket/trunk/wicket, if that's wh

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Igor Vaynberg
head is for cvs, trunk is for svn :)-IgorOn 3/29/06, Arto Arffman <[EMAIL PROTECTED]> wrote: OK, I'll check if it's my mistake or is there really a bug.   (latest head, don't know what "off trunk" means)  2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>: it should and i thought i recently fixed it,

[Wicket-user] Links opening Borders in an AJAX-like

2006-03-29 Thread Bruno Borges
Is it possible to build a Border (i.e.: NavomaticBorder) that opens the pages in the contentBody div using Ajax?Some Ajax component will process the page, and put the content into the replacing or changing the visibility (cache-mode). Is there any Wicket Component that does this ? In the Navomatic

[Wicket-user] Form submit from outside Wicket

2006-03-29 Thread Sven Meier
How would you handle a submit of a form that originates from outside of Wicket? Let me explain: In many web applications some forms (e.g. 'search a product') are replicated on other pages of the same application or even on other sites of business partners or advertisers. For our actionframewo

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Arto Arffman
OK, I'll check if it's my mistake or is there really a bug.   (latest head, don't know what "off trunk" means)  2006/3/29, Igor Vaynberg <[EMAIL PROTECTED]>: it should and i thought i recently fixed it, are you working off trunk?  -Igor On 3/28/06, Arto Arffman < [EMAIL PROTECTED] > wrote: Sh

Re: [Wicket-user] The web framework map

2006-03-29 Thread Eelco Hillenius
Very nice! Quite a bit of work that must have been :) I skimmed through it quickly, and in general it seems like a useful taxonomy. Do you have any specific areas where you would like to see some user participation? Eelco On 29 Mar 2006 14:23:23 +0200, Iwan Vosloo <[EMAIL PROTECTED]> wrote: > >

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Bruno Borges
I got it. From the Wicket-Example. :)Thank youOn 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED] > wrote:not that I can think ofJuergenOn 3/29/06, Vincent Jenks < [EMAIL PROTECTED]> wrote:> Is there a performance hit for customizing the location of the html files?> I thought I had read that somewher

Re: [Wicket-user] Wicket Include vs. RequestDispatcher.include

2006-03-29 Thread Eelco Hillenius
That's what I did in the first version(s) of Include. There were issues with it, which I unfortunately forgot. I never use this component myself, but if you have good ideas in the form of patches, I'd be happy to look at them. Eelco On 3/29/06, Nili Adoram <[EMAIL PROTECTED]> wrote: > Hi, > Is th

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Juergen Donnerstag
and please add a junit test (not just describing the problem). src/test contains plenty of junit test you might copy&paste (search for WicketTestCase) Juergen On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > it might be a bug because we handle tags specially ( we dont require > them to be

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
Ok, should be fixed in svn head now. Added junit tests. Juergen On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > sorry, I was mislead. Your code is right. The issue is the Ajax stuff > is not yet supported if the Ajax component is part of a bordered page. > Please use markup inheritanc

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Igor Vaynberg
it might be a bug because we handle tags specially ( we dont require them to be closed) i believe, please file.-IgorOn 3/29/06, Rüdiger Schulz <[EMAIL PROTECTED]> wrote:Justin Lee wrote on 29.03.2006 at 18:44:thanks for your quick reply :)Actually, that is what I also thought is logical. Still I

Re: [Wicket-user] help

2006-03-29 Thread Igor Vaynberg
heh, you are not really giving us much to go on. show us what you have so far.-IgorOn 3/29/06, ketan gote < [EMAIL PROTECTED]> wrote:hi i want to fetch the data from database which i have done and want to display it in respective textfield which i am not able to do. wating for replay regards keta

Re: [Wicket-user] Wicket versus Echo

2006-03-29 Thread Eelco Hillenius
Ok, well in that case the same arguments hold except for the ajax thingy. Eelco On 3/29/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i think he was talking about Echo not Echo 2 :) > > -Igor > > > > On 3/29/06, Eelco Hillenius <[EMAIL PROTECTED] > wrote: > > > > I was browsing some of the frame

Re: [Wicket-user] Wicket versus Echo

2006-03-29 Thread Igor Vaynberg
i think he was talking about Echo not Echo 2 :)-IgorOn 3/29/06, Eelco Hillenius <[EMAIL PROTECTED] > wrote:> I was browsing some of the framework comparisons on the web and realized > that though Wicket is in key ways most similar to Echo.  Yet, very little> has been written to contrast these two. 

Re: [Wicket-user] onAttach() with ajax

2006-03-29 Thread Igor Vaynberg
it should and i thought i recently fixed it, are you working off trunk?-IgorOn 3/28/06, Arto Arffman < [EMAIL PROTECTED]> wrote:Should onAttach() be called when ajax is used? (using latest head)   If so I'll dig deeper...   /arto

[Wicket-user] help

2006-03-29 Thread ketan gote
hi i want to fetch the data from database which i have done and want to display it in respective textfield which i am not able to do. wating for replay regards ketan

Re: [Wicket-user] javascript validation

2006-03-29 Thread Eelco Hillenius
And please read the notes of that project. If you are serious about using it, we might resurrect it and help you maintain it. Otherwise, it's just there to serve as an example of how javascript validation might be implemented. And if you have alternatives, we would be interested to learn about it o

Re: [Wicket-user] EJB3 Stateful SB - session issues/questions

2006-03-29 Thread Igor Vaynberg
you can inject the proxy into any componentlook at wicket-spring projectyou can create a IFieldValueFactory that injects a proxy for your stateful bean.-Igor On 3/29/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: I'm sitting here, pondering, and getting fatter.  I'm building a storefront app w/ a sim

Re: [Wicket-user] Wicket versus Echo

2006-03-29 Thread Eelco Hillenius
> I was browsing some of the framework comparisons on the web and realized > that though Wicket is in key ways most similar to Echo. Yet, very little > has been written to contrast these two. The one difference that I can > ascertain is that Wicket exposes the underlying html whereas Echo complet

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Juergen Donnerstag
not that I can think of Juergen On 3/29/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > Is there a performance hit for customizing the location of the html files? > I thought I had read that somewhere in the wiki, once upon a time. > > > On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: >

Re: [Wicket-user] TabbedPanel, InputForm and submit

2006-03-29 Thread Igor Vaynberg
well, this is pretty tricky stuffbecause you embed the form inside the tabbed panel it really shouldnt know anything about when the tab switches.one solution i might see is to embed the tabbed panel inside the form instead that way the links can submit the form and handle switching the tabs when ap

[Wicket-user] EJB3 Stateful SB - session issues/questions

2006-03-29 Thread Vincent Jenks
I'm sitting here, pondering, and getting fatter.  I'm building a storefront app w/ a simple shopping cart for which I'm thinking of using a Stateful session bean (EJB 3.0).It looks like, no matter how I look at it, I'll have to keep the SFSB stub in-session throughout its use in the application...a

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Vincent Jenks
Is there a performance hit for customizing the location of the html files?  I thought I had read that somewhere in the wiki, once upon a time.On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: please see wicket-example  customresourceloadingJuergenOn 3/29/06, Bruno Borges <[EMAIL PROTECTED]

Re: [Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Juergen Donnerstag
please see wicket-example customresourceloading Juergen On 3/29/06, Bruno Borges <[EMAIL PROTECTED]> wrote: > I don't like the way wicket put together Java classes with HTML resources > (in the same package structure). > > Even if I move the structure to another path, like WEB-INF/html, I must >

[Wicket-user] Html Resources Configuration in WebApplication subclasses

2006-03-29 Thread Bruno Borges
I don't like the way wicket put together Java classes with HTML resources (in the same package structure).Even if I move the structure to another path, like WEB-INF/html, I must reproduce all the package tree, and then add a resource folder in my init() WebApplication subclass. I was wondering if i

[Wicket-user] Re: page property file key when using NumberValidator

2006-03-29 Thread karthik Guru
ok, NumberValidator.range=blah blah worked. On 3/29/06, karthik Guru <[EMAIL PROTECTED]> wrote: > How s' d i be specifying the key in properties file when using > NumberValidator? > For others just specifying the validator class name key works. > > thanks, > karthik > -- -- karthik --

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Rüdiger Schulz
Justin Lee wrote on 29.03.2006 at 18:44: thanks for your quick reply :) Actually, that is what I also thought is logical. Still I wonder why this works, with the red asteriks and all: and this here not, throwing the Exception mentioned: with the exact same Java code

Re: [Wicket-user] validators get reset?

2006-03-29 Thread Igor Vaynberg
are these textfields inside a listview?-IgorOn 3/29/06, Roan O'Sullivan <[EMAIL PROTECTED] > wrote: Hi.I am dynamically building a form, and I dynamically add validators for TextField inputs (RequiredValidator, TypeValidator, etc.) in a DropDownChoice's IOnChangeListener method. When I step thro

Re: [Wicket-user] page property file key when using NumberValidator

2006-03-29 Thread Igor Vaynberg
the javadoc on static factory methods describes the keys-IgorOn 3/29/06, karthik Guru <[EMAIL PROTECTED] > wrote:How s' d i be specifying the key in properties file when using NumberValidator? For others just specifying the validator class name key works.thanks,karthik--

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Right. then you'd add the feedback panel and textfield directly to your page/panel. Otherwise, you'd have to add the textfield to your feedback panel since that's where you had it nested. Rüdiger Schulz wrote: > Justin Lee wrote on 29.03.2006 a

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
Thanks EelcoI have been poking around and manage to get the slider out in the examples, however, it now slides out of the bar :P ... I hope to add more options though...I am new to oss and scm in general so not sure how to apply a patch and don't want to break things. so I am attaching them in this

[Wicket-user] Wicket versus Echo

2006-03-29 Thread Frank Silbermann
I was browsing some of the framework comparisons on the web and realized that though Wicket is in key ways most similar to Echo.  Yet, very little has been written to contrast these two.  The one difference that I can ascertain is that Wicket exposes the underlying html whereas Echo complet

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Rüdiger Schulz
Justin Lee wrote on 29.03.2006 at 18:12: > > > > Sorry, this doesn't work either :( Wouldn't that be a component tree like that: fooForm:barFeedback fooForm:barText ? Still wondering why my example works with but not with ... > Rüdiger Schulz wrote: >> Hello list, >> >> I'm just

Fwd: Re: [Wicket-user] problem with session invalidation and back button

2006-03-29 Thread Jaime De La Jara
Hi, I finally fixed it, the problem was that I set a response page after invalidating the session, I commented the line and also redefined the PageExpiredErrorPage and it worked!.Thanks.Jaime.Jaime De La Jara <[EMAIL PROTECTED]> wrote: Date: Tue, 28 Mar 2006 14:01:39 -0800 (PST)From: Jai

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
sorry, I was mislead. Your code is right. The issue is the Ajax stuff is not yet supported if the Ajax component is part of a bordered page. Please use markup inheritance instead. Juergen On 3/29/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote: > Wicket shouldn't get into an infinite loop, that

Re: [Wicket-user] Tags building the component tree

2006-03-29 Thread Justin Lee
-BEGIN PGP SIGNED MESSAGE- Hash: RIPEMD160 Rüdiger Schulz wrote: > Hello list, > > I'm just starting to use Wicket 1.1, and stumbled upon an issue with > the component tree. > > Say I have a Form fooForm and a TextField barText, which is wrapped in a > FormComponentFeedbackBor

[Wicket-user] Tags building the component tree

2006-03-29 Thread Rüdiger Schulz
Hello list, I'm just starting to use Wicket 1.1, and stumbled upon an issue with the component tree. Say I have a Form fooForm and a TextField barText, which is wrapped in a FormComponentFeedbackBorder barFeedback. The tree therefore is like this: fooForm:barFeedback:barText I'd like to do HTML

Re: [Wicket-user] Caching content

2006-03-29 Thread Johan Compagner
about 1:You can share objects if you want between sessions..Thats also a no brainer. The problem comes when you have to think about synchronization issuesAnd then the big questions  arives.. What does cost more performance? And maybe for a search engine (where the pages are very very simple because

[Wicket-user] onAttach() with ajax

2006-03-29 Thread Arto Arffman
Should onAttach() be called when ajax is used? (using latest head)   If so I'll dig deeper...   /arto

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
Wicket shouldn't get into an infinite loop, that for sure. But there is a bug in your code: myBorder = new PageLayout("pageLayout", "Ajax Test"); myBorder.setTransparentResolver(true); add(myBorder); add(ajaxLabel = new Label("ajaxLabel", "AAA" )); aja

Re: [Wicket-user] servlet mapping

2006-03-29 Thread Juergen Donnerstag
That realy looks like a orion bug Juergen On 3/29/06, Theo vN <[EMAIL PROTECTED]> wrote: > Hi > > In the web.xml of the wicket-examples the servlet mapping is shown as.. > > > LinkomaticApplication > /linkomatic/* > > > The above does work in Tomc

Re: [Wicket-user] TabbedPanel, InputForm and submit

2006-03-29 Thread karthik Guru
So you want to click on one tab , and that should actually result in the form submit? wicket extensions TabbedPanel uses Link and not SubmitLink. So when you click on a tab , it does not submit your form and hence you lose out on the data. --- Igor, I'm just thin

Re: [Wicket-user] Location of image files

2006-03-29 Thread Timo Stamm
Frank Silbermann schrieb: But my "src" attribute to be modified _is_ in my HTML, as you can see (value shown is "REPLACE_THIS.png"). The problem is that the existing "src" attribute's value was not replaced. What do I need to do differently? Use this constructor: new AttributeModifier("src",

[Wicket-user] validators get reset?

2006-03-29 Thread Roan O'Sullivan
Hi.I am dynamically building a form, and I dynamically add validators for TextField inputs (RequiredValidator, TypeValidator, etc.) in a DropDownChoice's IOnChangeListener method. When I step through the code, that seems to work correctly: validators are added to the TextField input.   But whe

[Wicket-user] page property file key when using NumberValidator

2006-03-29 Thread karthik Guru
How s' d i be specifying the key in properties file when using NumberValidator? For others just specifying the validator class name key works. thanks, karthik --- This SF.Net email is sponsored by xPML, a groundbreaking scripting language that

Re: [Wicket-user] javascript validation

2006-03-29 Thread Martijn Dashorst
http://wicket-stuff.sourceforge.net/wicket-contrib-fvalidate/On 3/29/06, Theo vN <[EMAIL PROTECTED]> wrote:HiI'm new to Wicket and so far so good. I'm used to Tapestry's _javascript_ validation but I seem not to be ableto find any documentation/examples/facts on whether Wicket supportsclient side

[Wicket-user] Wicket Include vs. RequestDispatcher.include

2006-03-29 Thread Nili Adoram
Hi, Is there an option to use utilize wicket Include without opening a new connection? I would like to include the contents of a URL like RequestDispatcher.include() does, directly into a wicket component. 10x Nili --- This SF.Net email is s

[Wicket-user] javascript validation

2006-03-29 Thread Theo vN
Hi I'm new to Wicket and so far so good. I'm used to Tapestry's javascript validation but I seem not to be able to find any documentation/examples/facts on whether Wicket supports client side javascript validation or not. I am NOT talking about anything AJAX. Can somebody please enlighten me. -

[Wicket-user] servlet mapping

2006-03-29 Thread Theo vN
Hi In the web.xml of the wicket-examples the servlet mapping is shown as.. LinkomaticApplication /linkomatic/* The above does work in Tomcat but not in Orion (orionserver.com). What works in Orion is.. LinkomaticApplicat

Re: [Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Juergen Donnerstag
There is already a bug for this in sourceforge. Juergen On 3/29/06, Andre Matheus <[EMAIL PROTECTED]> wrote: > I am having trouble using Ajax links in pages with a border with > setTransparentResolver(true); > > The message in the Wicket Ajax Debugger is the following: > > INFO: > INFO: initia

Re: [Wicket-user] Caching content

2006-03-29 Thread Juergen Donnerstag
On 3/29/06, John Lee <[EMAIL PROTECTED]> wrote: > I wish I had the time :-) I'm in the process of moving my client's code > from php->Java. Need to move to a typed language. Things were getting > way too messy with PHP. I discovered wicket and think it's the right way > to go. But I wanted to shar

[Wicket-user] The web framework map

2006-03-29 Thread Iwan Vosloo
Hi Eelco. About a year ago we had an exchange about the survey I was busy with of 80 web framework (and related) projects. (It forms part of my Masters dissertation.) I've put up a wiki with the results at: http://www.reahl.org/wfmwiki. It would be great if you could join in! I include some

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Joshua Lim
ok I will take a look On 3/29/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Ok, just checked in some improvements. Slider still doesn't work forme however. Joshua, if you are interested, please take a look at whatis in SVN now, and see if you can find what the problem is.Thanks and have fun, Eelco

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Eelco Hillenius
Ok, just checked in some improvements. Slider still doesn't work for me however. Joshua, if you are interested, please take a look at what is in SVN now, and see if you can find what the problem is. Thanks and have fun, Eelco On 3/28/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > I didn't cho

[Wicket-user] Problem with AjaxLink and Borders with setTransparentResolver(true)?

2006-03-29 Thread Andre Matheus
I am having trouble using Ajax links in pages with a border with setTransparentResolver(true); The message in the Wicket Ajax Debugger is the following: INFO: INFO: initiating ajax GET request with... INFO: url: /QuickStart/app?wicket:interface=:2:ajaxLink:-1:IUnversionedBehaviorListener&wi

Re: [Wicket-user] Caching content

2006-03-29 Thread John Lee
I wish I had the time :-) I'm in the process of moving my client's code from php->Java. Need to move to a typed language. Things were getting way too messy with PHP. I discovered wicket and think it's the right way to go. But I wanted to share my perspective from what I learned running a relat

[Wicket-user] TabbedPanel, InputForm and submit

2006-03-29 Thread Stefan Lindner
I use Wicket 1.2beta2 and I have the followin question: I have a TabbedPanel with several tabs (according to the example). Each Panel contains an InputForm. Weh I change from one pane to another by klicking at the tab label I receive no onSubmit event and the input is lost. is there a way to mak

Re: [Wicket-user] Caching content

2006-03-29 Thread Eelco Hillenius
Is that a proposal? :) My first thought on this is to use AOP and meta data (either annotations or Wicket meta data). If people are interested, they can startup a project in wicket-stuff for this. We (the core developers) will try to help when needed/ possible. Ramnivas, are you reading with us?

Re: [Wicket-user] Caching content

2006-03-29 Thread John Lee
Hi I can tell you for public facing websites (vs enterprise), caching is a key feature that system architects will insist upon. In order to support extremely high concurrency & throughput, one simply must be able to cache portions of HTML fragments. On my previous php based projects, I use c

Re: [Wicket-user] yui slider enquiry

2006-03-29 Thread Eelco Hillenius
I didn't choose for that set implemention because I thought it would be useful to have an insertAt option. Eelco On 3/28/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Use a LinkedHashSet to filter out double entries and keep order. > > Martijn > > > On 3/29/06, Eelco Hillenius < [EMAIL PROTE