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

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

2006-08-28 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 area.

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

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 for

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] 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 CPM

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 Panel

Re: [Wicket-user] Maven2 archetypes

2006-08-17 Thread Gwyn Evans
, 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: Nice - Have added to wicket-stuff SVN will have to have a look at adding to the Wicket repo! /Gwyn On 15/08/06

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

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] 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 with Firefox

Re: [Wicket-user] Form-question

2006-08-15 Thread Gwyn Evans
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? (http://www.nabble.com/ajax-failed-to-update-a-component-%28wicket-1.2%29-tf1844050.html#a5033398) /Gwyn

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-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 on

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 youd be

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

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

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

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

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

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

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,

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

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] 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 big web

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

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 an idea

[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

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 the

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

[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 as

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

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 : head link rel=stylesheet

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

2006-08-04 Thread Gwyn Evans
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. It also shows an example of Spring configuration and covers Oracle

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

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 WebSphere V5.1. I

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

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] 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] 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

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

[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

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: Netbeans, Netbeans!

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: Interesting - more IDEA users than I expected, given

[Wicket-user] IBATIS (and Spring)

2006-07-29 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 -

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, but

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] 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 how i

[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] 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. In

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

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

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

[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=134391package_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] 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]

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] Wicket-Template

2006-07-14 Thread Gwyn Evans
+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 missing 'f'). Yeah that helped a lot :) mvn eclipse:eclipse generates eclipse project

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Gwyn Evans
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 to provide a basic Wicket development environment in a single package, which should

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 links).

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 where is the

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

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

2006-06-17 Thread Gwyn Evans
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 after the initial check in. On 6/16/06, Gwyn Evans [EMAIL

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

2006-06-16 Thread Gwyn Evans
request but Wiki tell to others requests : Precondition Failed thats easy to fix, quit being a robot! -Igor On 6/12/06, ali [EMAIL PROTECTED] wrote: On Sat, 20 May 2006 17:16:10 +0430, Gwyn Evans [EMAIL PROTECTED] wrote: please help me, i still not read wiki , wiki

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 On

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 send

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] -

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

2006-06-13 Thread Gwyn Evans
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 On 6/12/06, Gwyn Evans [EMAIL PROTECTED] wrote: Hi, I've got a form with a couple of dropdowns

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

[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

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 exception

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 that I

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, I'm sure I tested

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

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

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 them,

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 the CVS

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. WebApplication

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 for

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

2006-05-20 Thread Gwyn Evans
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 you get? It looks like SF is having issues right now, in that if I go to http

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

2006-05-19 Thread Gwyn Evans
/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 PROTECTED] wrote: Hi, I'm not sure of the exact issue there, but on the other hand, as it'll cost

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/06,

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

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) {

Re: [Wicket-user] NoClassDefFound: log4j.Category

2006-05-05 Thread Gwyn Evans
I don't know the answer off-hand, but recognise the problem - You're getting caught up in some issues involving logging, common-logging class-loading... See http://www.qos.ch/logging/classloader.jsp for a detailed discussion on the subject - Good luck! I think my quickest fix when I came

Re: [Wicket-user] Wicket book

2006-05-01 Thread Gwyn Evans
One thing that often gets overlooked is the wicket-examples module/project, which is either available as a download (http://sourceforge.net/project/showfiles.php?group_id=119783package_id=138752) or live at http://www.wicket-library.com/wicket-examples/, although the live is based on the last

[Wicket-user] Free Maven2 book

2006-04-25 Thread Gwyn Evans
Just as an aside, if there's anyone out there who's interested in Maven2, (which is the Wicket-standard build method), there's a very useful free eBook available from http://www.mergere.com/m2book_download.jsp /Gwyn --- Using Tomcat but need

Re: [Wicket-user] Re: Wicket simple DB components?

2006-04-23 Thread Gwyn Evans
a brick. ;) Nathan Gwyn Evans wrote: Just looking to see if we need to fill in any gaps in the docs/wiki with regards to DB interactions, which stills seems a bit unclear in places, to me at least (- that could just my not being experienced with Hibernate, though...) We've got

Re: [Wicket-user] HelloWorldApplication won't show index page

2006-04-23 Thread Gwyn Evans
debug this forever. Oh well, I guess I can say I tried. On 4/22/06, Gwyn Evans [EMAIL PROTECTED] wrote: Get rid of the public Session newSession() { // TODO Auto-generated method stub return null

Re: [Wicket-user] Powerful wicket sample

2006-04-22 Thread Gwyn Evans
Or one of the Databinder examples? /Gwyn On 22/04/06, Johan Compagner [EMAIL PROTECTED] wrote: hmm but you do need 1.2 for that On 4/22/06, Johan Compagner [EMAIL PROTECTED] wrote: just build the petstore application ;) i think the most WOW factor has some pages with pure ajax

Re: [Wicket-user] HelloWorldApplication won't show index page

2006-04-22 Thread Gwyn Evans
Get rid of the public Session newSession() { // TODO Auto-generated method stub return null; } in HelloWorldApplication.java, as with 1.2 at least, that causes a NPE in the WebApplication class. On a more general note, I wonder if you switched to

Re: [Wicket-user] RC2 - still have javascript errors

2006-04-21 Thread Gwyn Evans
Just as an aside, to the best of my knowledge, this isn't something that's new/changed in 1.2, hence nothing in any transition notes - this is been there right from the start, but maybe it's more apparent now there tends to be more to Wicket than the basic servlet, if you see what I mean. /Gwyn

[Wicket-user] Wicket simple DB components?

2006-04-21 Thread Gwyn Evans
Just looking to see if we need to fill in any gaps in the docs/wiki with regards to DB interactions, which stills seems a bit unclear in places, to me at least (- that could just my not being experienced with Hibernate, though...) We've got the wicket-phonebook app (Spring/Hibernate) DataBinder

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

2006-04-13 Thread Gwyn Evans
, are using wicket.jar. Replying n/a if not using the jar is ok for me. And as long as unit tests don't suffer, and I think they don't, than +1 for MANIFEST.MF Juergen On 4/13/06, Gwyn Evans [EMAIL PROTECTED] wrote: Anyone for or against this? Pro: Will provide the version from

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-12 Thread Gwyn Evans
On 12/04/06, Vincent Jenks [EMAIL PROTECTED] wrote: OK, I did this exactly how you showed me here... No you didn't - In your model you've got protected Object load() from somewhere, whereas what Johan said was public Object getObject(final Component component) /Gwyn and I'm still getting the

Re: [Wicket-user] bind Map to DropDownChoice

2006-04-12 Thread Gwyn Evans
The current equivalent is line 305, i.e. protected void onComponentTagBody(final MarkupStream markupStream, final ComponentTag openTag) { List choices = getChoices(); final AppendingStringBuffer buffer = new AppendingStringBuffer((choices.size() * 50) + 16); getChoices() is returning null

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

2006-04-12 Thread Gwyn Evans
Anyone for or against this? Pro: Will provide the version from the MANIFEST.MF in the jar file. Con: Only provides the correct value when Wicket is running from a JAR. /Gwyn On 31/03/06, Gwyn Evans [EMAIL PROTECTED] wrote: I suspected that might be the case with the test - could investigate

Re: [Wicket-user] View from 30,000 feet of Wicket infrastructure

2006-04-10 Thread Gwyn Evans
On 10/04/06, Dave Johnson [EMAIL PROTECTED] wrote: What are some good references that clearly explain the various levels of software I encounter, such as Linux, Tomcat, Jetty, Hibernate, PHP, MySQL and all the rest, and whether they're on the local machine or the remote server? And which are

<    1   2   3   4   >