Re: [Wicket-user] DateTable with alternating row color

2006-09-06 Thread Gwyn Evans
Well, with the DefaultDataTable, it overrides DataTable's newRowItem() method in order to return an new OddEvenItem rather than a new Item. The OddEvenItem overrides on ComponentTag in order to add the "odd" or "even" class. Could you, however, have overridden one of these yourself? /Gwyn On 06/

Re: [Wicket-user] wicket-ajax and firefox 1.06

2006-09-06 Thread Gwyn Evans
Really 1.0.6? Current version is 1.5.0.6, isn't it? /Gwyn On 06/09/06, Tomer Mevorach <[EMAIL PROTECTED]> wrote: > Hi all, > wicket-ajax.js generates the following error on firefox 1.06: > Error: [Exception... "Component returned failure code: 0x80040111 > (NS_ERROR_NOT_AVAILABLE) [nsIXMLHttpRequ

Re: [Wicket-user] AjaxTabbedPanel is broken (wicket-1.2.2)

2006-08-30 Thread Gwyn Evans
On 30/08/06, Ingram Chen <[EMAIL PROTECTED]> wrote: > I found that this also happend to AjaxFallBackDefaultDataTable... seems not > a problem for particular component. > > Is this bug already fixed in SVN or any work around I can do ? > My project is stopped due to this problem Well, try a f

Re: [Wicket-user] DropDownChoice's onSelectionChanged called too late

2006-08-30 Thread Gwyn Evans
Hmm, not /quite/ yet, I think - Check the thread on wicket-dev before commiting anything new (as opposed to bug-fixes) to 1.x. /Gwyn On 30/08/06, Johan Compagner <[EMAIL PROTECTED]> wrote: > 1.3 is wicket-1.x he? ;) -- Download Wicket 1.2.2 now! - http://wicketframework.org ---

Re: [Wicket-user] why does wicket have dataview/datagrid and repeater ?

2006-08-29 Thread Gwyn Evans
:-) On 29/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i think you forgot to attach the patch... :) -- Download Wicket 1.2.2 now! - http://wicketframework.org - Using Tomcat but need to do more? Need to support web se

Re: [Wicket-user] border and panel and MI

2006-08-27 Thread Gwyn Evans
http://www.wicket-wiki.org.uk/wiki/index.php/Panels_and_borders On 28/08/06, ali <[EMAIL PROTECTED]> wrote: > FAQ : what is actually usecase of border ? please give me some example > > i think > > border used to decorate components other than page nad panel becuase MI , > panel easily service this

Re: [Wicket-user] wicket:head in page template...

2006-08-27 Thread Gwyn Evans
The wiki page is maybe a bit too general in saying "If you are authoring a page, you don't need (and shouldn't use) tags but instead put it in the page's head section directly." I think what it's trying to say is to use the "" section directly where possible, i.e. if the page is a simple page or

Re: [Wicket-user] J2EE declarative security and wicket...

2006-08-25 Thread Gwyn Evans
Both? :-) You could try doing a Wiki page & seeing how much ends up being code, vs code & text? If code then possibly as a part of wicket-examples (although the I don't know if server-side requirements might rule that out) or a standalone one as a project below wicket-stuff? For that, personally

Re: [Wicket-user] How to Implement Looping in wicket

2006-08-23 Thread Gwyn Evans
Using the repeater examples, the looping is done by the framework as it walks the Iterator that's returned by the IDataProvider.iterator() implemention (ContactDataProvider). You could have a look at WicketPhonebook, but I think it's very similar to the examples. /Gwyn On 23/08/06, sathya81 <[EM

Re: [Wicket-user] ListView and AjaxSelfUpdatingTimerBehavior

2006-08-21 Thread Gwyn Evans
Now added to the Wiki's ListView page - http://www.wicket-wiki.org.uk/wiki/index.php/ListView#FAQ /Gwyn On 21/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > if you search the list you will see a ton of messages that explain this, > thats why i didnt bother doing it here for the hundredth time

Re: [Wicket-user] Dynamic Markup

2006-08-20 Thread Gwyn Evans
Note, Nabble (http://www.nabble.com/Wicket---User-f13976.html) is an alternative (and IMO better) way to view the same archive... /Gwyn On 20/08/06, Tim Fletcher <[EMAIL PROTECTED]> wrote: > ok found it on the mailing list > http://sourceforge.net/mailarchive/message.php?msg_id=36314114 > > sorry

Re: [Wicket-user] value not getting set to the model when AjaxFormComponentUpdatingBehavior used.

2006-08-18 Thread Gwyn Evans
Not 100% sure but don't you need to explicitly update the 2nd dropdown on the onUpdate - Compare with http://www.wicket-wiki.org.uk/wiki/index.php/DropDownChoice_Examples#Using_Ajax /Gwyn On 18/08/06, Dipu <[EMAIL PROTECTED]> wrote: > > > Hi All, > > I have the following hierarchy > > Page >

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Gwyn Evans
Hmm - "should" isn't really correct - "could", yes, but not "should". Personally, I'd suggest a single CompondPropertyModel, set for the form, if not the page, as that can really cut down on the code you need to write. That also solves where to put any associated data, as the ModelObject that the

Re: [Wicket-user] Dropdown choices in wicket

2006-08-18 Thread Gwyn Evans
As well as what the others have said, take a look at the wiki, specifically http://www.wicket-wiki.org.uk/wiki/index.php/DropDownChoice_Examples, which might help. /Gwyn On 18/08/06, sathya81 <[EMAIL PROTECTED]> wrote: > > Hi, iam new to wicket, am going through the available examples, i dont >

Re: [Wicket-user] Pro Wicket beta book available

2006-08-17 Thread Gwyn Evans
One thing that I noticed that might be worth a quick check is the exact state of the Spring integration, as I think Igor did some work that simplified the annotated usage. See http://www.wicket-wiki.org.uk/wiki/index.php/Spring#Annotation-based_Approach for what I think the latest is, although I'

Re: [Wicket-user] Maven2 archetypes

2006-08-17 Thread Gwyn Evans
etapp > could get you started with developing your fist wicket application, > right from scratch, provided that maven and the internet is present. > > Btw. are you going to, or should I, close the feature request? > > Have fun, > > Martin > > > Gwyn Evans schrieb: > &

Re: [Wicket-user] A wicket Problem?

2006-08-16 Thread Gwyn Evans
Different DTD's in your examples & in the Wicket pages? /Gwyn On 16/08/06, wired <[EMAIL PROTECTED]> wrote: > > I use the following CSS code to center a page in a browser > > wrap{ > color:#404040; > width:970px; > margin:10px auto; > padding:0; > } > > Using it a simple html page, the code works

Re: [Wicket-user] Maven2 archetypes

2006-08-16 Thread Gwyn Evans
Nice - Have added to wicket-stuff SVN & will have to have a look at adding to the Wicket repo! /Gwyn On 15/08/06, Martin Funk <[EMAIL PROTECTED]> wrote: > Hi, > > I've been playing arround with maven archetypes as described in > http://maven.apache.org/guides/mini/guide-creating-archetypes.html >

Re: [Wicket-user] Best way to get contents of the manifest.MF file?

2006-08-15 Thread Gwyn Evans
It depends on what you want from it - You could get some information from it via the Package class, e.g. public String getVersion() { String implVersion = null; Package pkg = this.getClass().getPackage(); if (pkg != null)

Re: [Wicket-user] Form-question

2006-08-15 Thread Gwyn Evans
Object o)"? /Gwyn On 14/08/06, Mats Norén <[EMAIL PROTECTED]> wrote: > Not really, I'm not using any Ajax-stuff or anything like that. > How do you mean? > > /Mats > > > On 8/14/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > Does this thread apply

Re: [Wicket-user] Form-question

2006-08-14 Thread Gwyn Evans
Does this thread apply? (http://www.nabble.com/ajax-failed-to-update-a-component-%28wicket-1.2%29-tf1844050.html#a5033398) /Gwyn On 13/08/06, Mats Norén <[EMAIL PROTECTED]> wrote: > What I want the following code to do is to iterate all propertyTypes > and create or lookup the appropriate property

Re: [Wicket-user] ListViews vs repeaters (was: Form + pull model ListView + FormValidators)

2006-08-11 Thread Gwyn Evans
Well, I'm using the wicket.extensions.markup.html.repeater.data.table packages and wicket.extensions.markup.html.repeater.data.DataView but that's because I got familiar with them via phonebook & I'm getting the data I'm showing from a DB, whereas I've not done very much at all with ListViews, so i

Re: [Wicket-user] Pretty URL for login page ?

2006-08-11 Thread Gwyn Evans
I haven't tried it, but I wonder if something like mountBookmarkablePage("/login", LoginPage.class); in your Application instance would give what you want? Note, it's probably a bad idea to try & duplicate 'real' pages/folders such as "/" or "/app"! Having said that though, I'd have thought y

Re: [Wicket-user] Mounted URL Differences

2006-08-10 Thread Gwyn Evans
Why - Just to look nice, or is this a case where you might be needing to use a BookmarkablePageLink? There'll still be cases where Wicket will use it's internal links (where there's state being passed around), but there may also be cases where there's no state that could be used by bookmarkable u

Re: [Wicket-user] Ajax Submit default to Non Ajax Submit ?

2006-08-10 Thread Gwyn Evans
Hi, I've not got any real experience with Ajax, so the only things I can suggest are to (a) see if you can see anything with the WicketAjaxDebug window, (b) paste some example code or maybe better, make up a small example app to show the problem, using wicket-quickstart or wicket-template as a ba

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-08-09 Thread Gwyn Evans
Thanks! On 09/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > updated - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier

Re: [Wicket-user] Performance/Scalability tips

2006-08-09 Thread Gwyn Evans
http://httpd.apache.org/docs/2.2/programs/ab.html I think you're correct with the params, but I've no idea about the cookies. I think that basic lesson is that the benchmark that was done is only of use if the OP intended to be serving the Wicket-Examples app out at that rate - otherwise a more r

Re: [Wicket-user] Performance/Scalability tips

2006-08-09 Thread Gwyn Evans
As Johan said, no. Take a look at the Javadocs for BookmarkablePageLink & WebPage (links below) /Gwyn http://wicket.sourceforge.net/apidocs/wicket/markup/html/link/BookmarkablePageLink.html http://wicket.sourceforge.net/apidocs/wicket/markup/html/link/BookmarkablePageLink.html On 09/08/06, Korb

Re: [Wicket-user] Performance/Scalability tips

2006-08-09 Thread Gwyn Evans
On 09/08/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: > where did you read about the detached models ? Here's a good place to start - http://www.wicket-wiki.org.uk/wiki/index.php/Models#Detachable_Models. Then check the entries for the specific classes (e.g. AbstractDetachableModel) mentioned e

Re: [Wicket-user] Performance/Scalability tips

2006-08-09 Thread Gwyn Evans
There's this on the subject that Martijn posted a little while ago, http://www.nabble.com/Re%3A-Wicket-in-large-scale-production-scenarios--p5374359.html but maybe someone on the list might have more comments. The main technical issues are to ensure that you use detatched models & to try & be care

Re: [Wicket-user] Coding Authentification, Databinding and Role-related application behaviour

2006-08-09 Thread Gwyn Evans
Any chance you'd have time to add a "V2.0" update to that effect here - http://www.wicket-wiki.org.uk/wiki/index.php/Spring :-) /Gwyn On 09/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > i have recently deprecated springannotwebapp so this no longer should be a > problem. now to get spring inj

Re: [Wicket-user] Wicket-contrib-navmenu

2006-08-08 Thread Gwyn Evans
wicket-contrib-navmenu's part of wicket-stuff, or more to the point it's not part of the core Wicket project, so you shouldn't expect it to be versioned up along with the core. I'd expect you could just go with the current version though, as 1.2 -> 1.2.1 should be a dropin for clients, which is wh

Re: [Wicket-user] Tooltips: A short tutorial (without contrib-dojo, 1.2 compatible)

2006-08-08 Thread Gwyn Evans
> 10) There is no step 10 How about "Document it on the Wiki"! :-) /Gwyn On 08/08/06, Johannes Fahrenkrug <[EMAIL PROTECTED]> wrote: > Hi! > > I've asked so many questions on this list and got so many friendly and > helpful answers, it's time to give something back. > This Saturday I migrated a

Re: [Wicket-user] 3 day beginners overview / broken mounts

2006-08-07 Thread Gwyn Evans
On 07/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > im not a wiki admin so hopefully gwyn is reading with us ;) You are, actually! :-) Anyway, it's certainly worth suggesting to people who're adding code that they mention the version they're using, but I'm not sure how easy it'd be to tweak t

[Wicket-user] New User Documentation

2006-08-07 Thread Gwyn Evans
To anyone getting started, there's a new Wiki page, "Documentation Index" at http://www.wicket-wiki.org.uk/wiki/index.php/Documentation_Index which is an attempt to provide an overview to the primary sources of information. Hopefully it'll help, but if not, please let us know what sort of document

Re: [Wicket-user] HTML template missing

2006-08-07 Thread Gwyn Evans
On 07/08/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > Surely enabling debug for wicket.util.resource.Resource would help. I > put a property file in the classpath with the following line : > > log4j.logger.wicket.util.resource=DEBUG > > but it doesn't change anything. > > Does any one has

Re: [Wicket-user] CSS not found

2006-08-05 Thread Gwyn Evans
If this is just the basic application CSS, as opposed to per-component CSS, then the way I normally do it is outside Wicket itself, i.e. I have the file at "src/webapp/css/styles.css" (src/webapp/*" gets copied to the root of the webapp) then just reference it as : It's not simply that Wic

Re: [Wicket-user] qwicket

2006-08-05 Thread Gwyn Evans
gt; I'm really interested in a wicket-spring-hibernate template. Is qwicket > where I should be, or are there other options? > > Thanks, > > Gwyn Evans wrote: > > I'm not all that familier with what qwicket produces, so can't be much > > help. I don&#x

Re: [Wicket-user] A thought on Links & Bookmarkable links

2006-08-05 Thread Gwyn Evans
On 05/08/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > The key thing about bookmarkable pages is that they can be constructed > directly/ without the need to have a session upfront/ without having > to rely on other pages. This means that the URL is the only thing that > is available for a bookm

[Wicket-user] A thought on Links & Bookmarkable links

2006-08-05 Thread Gwyn Evans
I'm currently dealing with a summary list of items, which each have a link to a detail page where I'm displaying the basic info plus some additional info. i.e. "Id, Name, Start, End, Status" sort of thing, with the "Id" being a link to the detail page. The link's a Bookmarkable one, passing the id

Re: [Wicket-user] qwicket

2006-08-05 Thread Gwyn Evans
I'm not all that familier with what qwicket produces, so can't be much help. I don't recall anything particular when I tried it a while back, but I was probably looking at the code rather than if it ran out of the box. For an "all-in", out-of-the-box setup, you might want to have a look at the 'of

Re: [Wicket-user] links in a DataTable

2006-08-04 Thread Gwyn Evans
Thanks, I've used that (and the way I do it) in a new page on the Wiki http://www.wicket-wiki.org.uk/wiki/index.php/Extensions:datatablelinks /Gwyn On 04/08/06, Joe Toth <[EMAIL PROTECTED]> wrote: > Thats exactly what I did...here is how I implemented it. I use this a lot, > maybe slap it in exte

Re: [Wicket-user] IBATIS (and Spring)

2006-08-04 Thread Gwyn Evans
some stage! /Gwyn On 28/07/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > While there's nothing too Wicket-specific needed to use iBATIS with > Wicket, I've nevertheless created a page on the Wiki that may be of > interest if anyone's considering it's use. &g

Re: [Wicket-user] VOTE: how should localized attributes work?

2006-08-03 Thread Gwyn Evans
> 2 [ X ] - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys -- and earn cash http://www.te

Re: [Wicket-user] Question about ChoiceRenderer

2006-08-03 Thread Gwyn Evans
What's the signature of companyModel's getUser method? I'd expect that Wicket would be looking for a "String getUser()" method to call... /Gwyn On 03/08/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > Sorry, I made a mistake. The object do have a "user" property, but > Wicket is still using

Re: [Wicket-user] WicketMessage: No get method defined for class: class java.lang.Integer expression: id

2006-08-03 Thread Gwyn Evans
On 03/08/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: > (I was using autoboxing, which it seems Wicket is not aware of). Wicket 1.* deliberately doesn't make use of any JDK 1.5 features, in order to support JDK 1.4, so while you can use JDK 1.5 features, you need to be aware of this sort of

Re: [Wicket-user] Basic Skeleton, Beginner Questions

2006-08-03 Thread Gwyn Evans
Just to add a bit to Martijn's reply... > 1. I wantet to get a "Hello World app" working, however, i failed in finding > out what is "really" necessary, to do it. I tried the Quickstart (Eclipse) > example, but there seems many unneeded things in it, too (jetty, many docs > etc), so i wondered if

Re: [Wicket-user] jsessionid appear three times

2006-08-03 Thread Gwyn Evans
Hmm, doesn't really help, but doesn't happen with my 1.2.1 app when I switch off cookies to enforce jsessionid use - that's with Jetty, though... Maybe try something like the wicket-quickstart or the wicket-template apps in the same environment to see if they behave the same? On 03/08/06, R.A <[E

Re: [Wicket-user] jsessionid appear three times

2006-08-03 Thread Gwyn Evans
No specific reason, but what's your application context (looks like either "test" or ROOT?) and what's your servlet-mapping (in web.xml - is it "/" - should be "/*", although "/app/*" is recommended). /Gwyn On 03/08/06, R.A <[EMAIL PROTECTED]> wrote: > > Hi all. > > I use wicket-1.2.1 and WebSphe

Re: [Wicket-user] Quickstart Error on JBoss

2006-08-02 Thread Gwyn Evans
Interesting - thanks for the post. On my side, I've just deployed a Wicket app to BEA WLS9 with no issues at all - Most of the development was done with Jetty, just changing the Spring config to pickup the dataSource from JNDI for Weblogic, and that's only because I didn't get round to setting the

Re: [Wicket-user] HTML tools

2006-08-01 Thread Gwyn Evans
Well, I've been using it for ages - since I needed to move on from Kawa, in fact, so a few years now! /Gwyn On 01/08/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > another one bytes the dust > > > On 8/1/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > >

Re: [Wicket-user] HTML tools

2006-08-01 Thread Gwyn Evans
Interesting - more IDEA users than I expected, given that I use it too! /Gwyn On 01/08/06, Frank Bille <[EMAIL PROTECTED]> wrote: > Visual Studio .NET !! > > > On 8/2/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > > > > jedit! > > > On 8/1/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote: > > Netbe

[Wicket-user] HTML tools

2006-08-01 Thread Gwyn Evans
Just out of curiosity, what sort of methods are people using to develop their HTML - any recommended tools or is everyone doing it by hand? /Gwyn - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Te

Re: [Wicket-user] Quickstart Error on JBoss

2006-08-01 Thread Gwyn Evans
It's not /just/ Wicket - Googling for that error shows it in a number of cases, but it looks to be down to "issues" with JBoss not coping with log4j.jar in WAR files. There look to be at least 3 options... 1) Configure JBoss to keep it's internal jars to itself (if you can) 2) Remove the log4j.w

Re: [Wicket-user] Wicket and Sun Java App Server

2006-07-29 Thread Gwyn Evans
Does this page (http://www.wicket-wiki.org.uk/wiki/index.php/Java_security_permissions) on the Wiki help? /Gwyn On 29/07/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > please any anyone tried wicket on Sun Java Application Server, I am just > evaluating this i met this error. Any ideas on ho

Re: [Wicket-user] How to check checkBoxes ?

2006-07-29 Thread Gwyn Evans
The normal way is to let Wicket handle the check boxes and to just check the model. See the WicketExamples/ComponentReference antd/or http://www.wicket-wiki.org.uk/wiki/index.php/Listview_with_checkboxes_in_a_form for examples. /Gwyn On 28/07/06, Alban Duval <[EMAIL PROTECTED]> wrote: > Hi all,

Re: [Wicket-user] apache wicket?

2006-07-29 Thread Gwyn Evans
On 28/07/06, cowwoc <[EMAIL PROTECTED]> wrote: > > I have similar questions. I generally perceive Apache as the place > open-source projects go to die :) What, like the Http Server, Ant, Maven, Tapestry & Tomcat? Ex-parrots, all of them! :-) > Apache might be the right way to go,

[Wicket-user] IBATIS (and Spring)

2006-07-28 Thread Gwyn Evans
While there's nothing too Wicket-specific needed to use iBATIS with Wicket, I've nevertheless created a page on the Wiki that may be of interest if anyone's considering it's use. It also shows an example of Spring configuration and covers Oracle paging, but they're peripheral to the main point - S

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-27 Thread Gwyn Evans
I'd guess you need to checkout wicket-parent (http://svn.sourceforge.net/viewcvs.py/wicket/branches/WICKET_1_2/wicket-parent) and do a "mvn install" in there first. /Gwyn On 26/07/06, Vincent Jenks <[EMAIL PROTECTED]> wrote: > Also, I'm not able to build Wicket 1.2.1 w/ maven like I did w/ 1.2. >

[Wicket-user] @SpringBean in 1.2+...

2006-07-27 Thread Gwyn Evans
Hi, If anyone who knows has the time, could they take a look at http://www.wicket-wiki.org.uk/wiki/index.php/Spring on the wiki & check if any changes need to be made to bring it up-to-date. I'm not personally up-to-speed enough with Spring, let alone Spring in Wicket, so can't be 100% sure if

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-25 Thread Gwyn Evans
On 25/07/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > wiki is too slow for me to be usable right now, Out of interest, what sort of delays were you seeing & was this a one-off or does it normally seem too slow? /Gwyn - Tak

Re: [Wicket-user] Please explain the usage of Border in the library example

2006-07-24 Thread Gwyn Evans
I think it's tied into how the border added to the AuthenticatedWebPage's parent (the WicketExamplePage instance), which I think means that anything added to a child page (or indeed to the WicketExamplePage itself) will be added as child of the border. /Gwyn On 24/07/06, Rice Yeh <[EMAIL PROTECTE

Re: [Wicket-user] Retaining values from one page view to the next

2006-07-21 Thread Gwyn Evans
On 21/07/06, David Leangen <[EMAIL PROTECTED]> wrote: > > Apologies for another basic Wicket question... Not a problem - It helps others, either by suggesting what we could do with adding to the docs or the wiki, quite apart from having the answers on the list. > PS - I tried searching on the arc

Re: [Wicket-user] ajax & the wiki

2006-07-18 Thread Gwyn Evans
Not sure about "Best Practice", but "DropDownChoice_Examples/More_Examples" on the wiki (http://www.wicket-wiki.org.uk/wiki/index.php/DropDownChoice_Examples#More_Examples) shows the "onSelectionChanged" method and then the "Ajax" methods of handling the changes where you have two DropDownChoice c

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Gwyn Evans
e > wicket.myproject and it isn't used as far as what I can see. > > Frank > > On Fri, 2006-07-14 at 16:58 +0100, Gwyn Evans wrote: > > Well, the problem has been that the use of the QS package has drifted > > away from it's core 'requirement', which is

Re: [Wicket-user] Out-of-oder ajax responses

2006-07-14 Thread Gwyn Evans
I don't know if it's technically feasible, but I think you've got the answer with your last sentence - Even if not, I can't believe it's a good idea to trigger a request per-keystroke - how feasible would it be to send only when the char is entered? /Gwyn On 14/07/06, Nathan Hamblen <[EMAIL PROT

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Gwyn Evans
L PROTECTED]> wrote: > On Fri, 2006-07-14 at 14:02 +0100, Gwyn Evans wrote: > > Opps - they are in the repo! (Somewhat simplified) there's a typo in > > the pom regarding one of the adapters - it should be simple-log-slf4j > > rather than simple-log-sl4j (i.e. a mis

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Gwyn Evans
On 14/07/06, Frank Bille Jensen <[EMAIL PROTECTED]> wrote: > Nice. I like the mvn approach better, than having a large quickstart > including libraries. > > Any reason why you are using org.grlea.log and friends instead of basic > apache log commons? They are not in maven repository, so it's not >

Re: [Wicket-user] Playing with models:)

2006-07-14 Thread Gwyn Evans
You'd normally set all the internal objects up during the initial load() processing, which is called once at the start of each request. If that's not suitable, you might want to expand on what you're trying to do & during what phase of a request? /Gwyn On 14/07/06, Nino Wael <[EMAIL PROTECTED]>

[Wicket-user] Wicket-Template

2006-07-14 Thread Gwyn Evans
I've added a "Wicket Template" module/package to Wicket-Stuff - (http://sourceforge.net/project/showfiles.php?group_id=134391&package_id=197274) Nothing too dramatic - basically a cut-down version of Quickstart, leaving the Maven2 pom.xml together with a (very) basic WicketApp. It uses the Maven2

Re: [Wicket-user] DataView (extentions)

2006-07-12 Thread Gwyn Evans
On 12/07/06, Frank Silbermann <[EMAIL PROTECTED]> wrote: > I suppose it could go into: > > Wicket Wiki > // Reference Library > How To Do Things in Wicket > // Database Interaction > > -- though it would be much longer than any of the other articles (aside > from those which are external l

Re: [Wicket-user] wicket examples - live in action

2006-07-12 Thread Gwyn Evans
Hmm - no idea if there were transient issues with the hosting, but I just tried the helloworld one with no problems... /Gwyn On 12/07/06, jan_bar <[EMAIL PROTECTED]> wrote: > Hi, > > just to let you know, the live exmples at > http://www.wicket-library.com/wicket-examples/ doesn't work well (at l

Re: [Wicket-user] quickstart

2006-07-07 Thread Gwyn Evans
Actually, "mvn idea:idea" did pretty well, the last time I tried. /Gwyn On 07/07/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > We need someone to maintain that. Anyone volunteering? Same goes for > netbeans of course. > > Eelco > > > On 7/7/06, James Cook <[EMAIL PROTECTED]> wrote: > > And whe

Re: [Wicket-user] Testing Wicket 1.2 on Glassfish b48

2006-07-06 Thread Gwyn Evans
On 06/07/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > so there are people out there not using log4j? :) I'm quite taken with Simple Log, myself! [https://simple-log.dev.java.net/] (It includes an CommonsLoggingAdapter for use with clogging.) /Gwyn Using Tomcat but need to do more? Need to supp

Re: [Wicket-user] a complete wicket web application example

2006-06-17 Thread Gwyn Evans
mplementation is right here on my > machine and I haven't moved it into wicket-stuff yet. Guess i was just plain > lazy. I will do it this weekend. I worked on it a few months back. My > understanding of Wicket has improved quite a bit since then. I will make a > few more modifications af

Re: [Wicket-user] [Wicket user] How to trigger an Ajax request from JavaScript

2006-06-16 Thread Gwyn Evans
Does Igor's post in the recent "Adding javascript to Button.onclick" thread help? /Gwyn On 15/06/06, Yuri Magrisso <[EMAIL PROTECTED]> wrote: > Hi, > > I have a page with behaviors that is easier for me to code directly in > JavaScript. I would like to render a page, let the user input data, then

Re: [Wicket-user] a complete wicket web application example

2006-06-16 Thread Gwyn Evans
There was talk of someone having a go at a PetStore implementation, but I don't recall hearing any more on that? /Gwyn On 16/06/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > or even putting together a spec for an ideal example app would be great to > give us a good starting point. > > -Igor > >

Re: [Wicket-user] can'nt read wiki

2006-06-16 Thread Gwyn Evans
Gwyn tell me that NOT use > OE. i try Opera/FireFox/IE but since i only able that get page of first > request but Wiki tell to others requests : > > Precondition Failed > > > thats easy to fix, quit being a robot! > > > > -Igor > > >

Re: [Wicket-user] Plan to develop a portal

2006-06-15 Thread Gwyn Evans
Worth reminding people that your wicket-phonebook[1] demo's an example of Spring, as well as Hibernate/Ibatis? Regarding Jetty, see [2]if anyone wants to go with Jetty6 rather than Jetty4. /Gwyn [1] - http://wicket-stuff.sourceforge.net/wicket-phonebook/ [2] - http://www.wicket-wiki.org.uk/wiki/i

Re: [Wicket-user] HowTo update another form element from onSelectionChanged?

2006-06-13 Thread Gwyn Evans
you can attach > javascript to the target that would remove the select one from the first > drop down or refresh it entirely. > > -Igor > > > > On 6/13/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > Hi, > > Thanks & just for the record... > > > > The

Re: [Wicket-user] HowTo update another form element from onSelectionChanged?

2006-06-13 Thread Gwyn Evans
pt to the target that would remove the select one from the first > drop down or refresh it entirely. > > -Igor > > > > On 6/13/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > > Hi, > > Thanks & just for the record... > > > > The second was using the firs

Re: [Wicket-user] HowTo update another form element from onSelectionChanged?

2006-06-13 Thread Gwyn Evans
tems that the second's choice model is pointing to, or change the choices > model entirely by calling setchoices > > take a look at the ajax example in wicket examples of the two drop downs, > take away the ajax behavior and it will work with a simple page refresh. > > -Igor >

[Wicket-user] HowTo update another form element from onSelectionChanged?

2006-06-12 Thread Gwyn Evans
Hi, I've got a form with a couple of dropdowns, where the values in the 2nd depend on the selection of the first. If using wantOnSelectionChangedNotifications() on the first, is there a way of triggering a refresh on the second, as part of the onSelectionChanged() callback of the first or do I n

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-12 Thread Gwyn Evans
No idea (I don't use Eclipse), but there's no problem with the server itself, as I just checked it via the command line "svn co https://svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicket-contrib-tinymce wicket-contrib-tinymce" and that had no problem... /Gwyn On 12/06/06, Ayodeji Aladejebi <[E

Re: [Wicket-user] Help: problem with wicket-phonebook 1.2

2006-06-10 Thread Gwyn Evans
I've updated the SF download with the (working) version from the 1.2 branch (which includes IBATIS support) - Unpack the war & edit the applicationContext & the web.xml where indicated to switch to Hibernate. /Gwyn On 10/06/06, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Odd,

Re: [Wicket-user] Newbie building Wicket source from dist and from SVN

2006-06-10 Thread Gwyn Evans
On 10/06/06, Aaron Metzger <[EMAIL PROTECTED]> wrote: > I have a few simple questions regarding my attempts to build Wicket from > source. > ... > What is the recommended tool (ant, maven, eclipse) for building Wicket > from source from a raw checked out branch and is there a README > somewhere

Re: [Wicket-user] Help: problem with wicket-phonebook 1.2

2006-06-10 Thread Gwyn Evans
Odd, I'm sure I tested that before uploading it... Best thing would be to download the latest from SVN, using the following SVN URL: https://svn.sourceforge.net/svnroot/wicket-stuff/branches/WICKET_1_2/wicket-phonebook /Gwyn On 10/06/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > nested exceptio

Re: [Wicket-user] wicket-phonebook

2006-06-08 Thread Gwyn Evans
OK, download from https://svn.sourceforge.net/svnroot/wicket-stuff/branches/WICKET_1_2/wicket-phonebook to get a 1.2 version of the latest, which includes both Hibernate and IBATIS options. I should say I'm not an IBATIS expert, so could have missed something subtle, but it appears to be working w

Re: [Wicket-user] wicket-phonebook

2006-06-08 Thread Gwyn Evans
Hmm, that's a pain - you're right... You can get the 1.2 version as https://svn.sourceforge.net/svnroot/wicket-stuff/tags/WICKET_1_2/wicket-phonebook wicket-phonebook or even as a download from SF - See http://wicket-stuff.sourceforge.net/wicket-phonebook/, but unfortunately, there's no 1.2 branch

Re: [Wicket-user] Checking Out from wicket stuff

2006-06-07 Thread Gwyn Evans
http://svn.sourceforge.net/viewcvs.py/wicket-stuff/trunk/ On 05/06/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: > Please i have been having "No route to host" error using eclipse to check > out from Subversion, formally i use > > :pserver:[EMAIL PROTECTED]:/cvsroot/wicket-stuff > > to access t

Re: [Wicket-user] navigation links not session depending

2006-06-07 Thread Gwyn Evans
On 06/06/06, Stefan Groschupf <[EMAIL PROTECTED]> wrote: > In general: is there a way to have session independent generated > links? May be just a configuration thing? > Where I have to look into? > Thanks for any pointers? You're after a BookmarkablePageLink, although once you've had a look at t

Re: [Wicket-user] Options Transfer Component?

2006-06-07 Thread Gwyn Evans
Hi, Take a look at the Palette component - e.g. http://www.wicket-library.com/wicket-examples/compref?wicket:bookmarkablePage=:wicket.examples.compref.PalettePage /Gwyn On 07/06/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hi, > > I'm new to Wicket and I > need to create an "Options Trans

Re: [Wicket-user] 13 classes where needed for HelloWorld example ?

2006-06-01 Thread Gwyn Evans
It might be that the wicket-quickstart is the best place to start for Wicket 1.2... /Gwyn On 31/05/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: Hi, I just started to try Wickets. It' supposed to be so simple to use ! I first discovered that the Helloworld example won't work. WebApplicatio

Re: [Wicket-user] java.io.NotSerializableException: org.apache.tomcat.dbcp.dbcp.Poo lingDataSource$PoolGuardConnectionWrapper

2006-05-24 Thread Gwyn Evans
Hi, I think you'll need to use a DetachableModel and load & unload your datasource to stop it being serialized - http://www.wicket-wiki.org.uk/wiki/index.php/Models#Detachable_Models should get you started. /Gwyn On 24/05/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: Hi, I am new fo

Re: [Wicket-user] can'nt read wiki

2006-05-20 Thread Gwyn Evans
filter of opera to filter some site some tme only my first request get page but other requests get "Precondition Failed" page On Fri, 19 May 2006 14:10:24 +0430, Gwyn Evans <[EMAIL PROTECTED]> wrote: > Hmm, what URL are you trying, with what program & what do

Re: [Wicket-user] A ListView with no items

2006-05-19 Thread Gwyn Evans
Well, off the top of my head, you could either use panels and have two panels there, chosing at run time (one with the UL and data, the other with the "You have no foo's" message), or alternatively have both in the basic page and "setVisible(false)" one or the other at run time. /Gwyn On 19/05/

Re: [Wicket-user] can'nt read wiki

2006-05-19 Thread Gwyn Evans
7;Connection' header, but I don't know if that's you. /Gwyn On 19/05/06, ali <[EMAIL PROTECTED]> wrote: now i can not read any page of wiki i no has a virus, firewall , i test opera, firefox, IE , = On Thu, 18 May 2006 12:18:34 +0430, Gwyn Evans <[EMAIL PROTEC

Re: [Wicket-user] can'nt read wiki

2006-05-18 Thread Gwyn Evans
Hi, I'm not sure of the exact issue there, but on the other hand, as it'll cost if we exceed the bandwidth, I'm not really sure that I want to encourage the practice of periodically auto-downloading the Wiki... It might be that this product uses HEAD requests to check if the download's needed b

Re: [Wicket-user] Free Maven2 book

2006-05-16 Thread Gwyn Evans
Yes, I've got the same thing happening here /Gwyn On 16/05/06, Johan Compagner <[EMAIL PROTECTED]> wrote: yeah and now i am getting new mails and 4 day old mails all together. And some i still don't see comming in that i did send. So sourceforge is a bit sick again at the moment. johan

Re: [Wicket-user] dynamic html controls

2006-05-08 Thread Gwyn Evans
I've added http://www.wicket-wiki.org.uk/wiki/index.php/Using_repeaters, although I'm not sure if there's not an optimisation I'm missing involving a compound property model, as I've got a populateItem() like this... protected void populateItem(ListItem item) { Use

<    1   2   3   4   >