Re: Avoid serialization troubles with static members

2009-02-19 Thread Johan Compagner
no because the component isnt instantiated so that wount be called. after deserialization that field will be null. maybe you could bulid in a container/page a deserialize hook and when that is called go over all your components and inject it again johan On Thu, Feb 19, 2009 at 08:41, Martin

Re: maven guru/wickstuff project maintainers..

2009-02-19 Thread Johan Compagner
First i also have to checkout why this happens and why it happens only to sourceforge wicketstuff only from that server Caused by: java.net.ConnectException: Network is unreachable at java.net.PlainSocketImpl.socketConnect(Native Method) at

Re: maven guru/wickstuff project maintainers..

2009-02-19 Thread Johan Compagner
i see that wicket1.3 jdk1.4 is using these goals: -Pbamboo-jdk-1.4 clean deploy On Thu, Feb 19, 2009 at 08:03, Martin Funk mafulaf...@googlemail.comwrote: But those are only defined in profiles: 'bamboo' and 'wickettraining.com-continuum' are those profiles pulled for the builds? mf

Re: maven guru/wickstuff project maintainers..

2009-02-19 Thread Martijn Dashorst
I'm willing to move to hudson (though I don't think hudson's interface is inspiring). There has been some discussion moving for Wicket core stuff to the Apache based hudson, but I haven't seen that much benefits from it. I might follow up on that. Martijn On Thu, Feb 19, 2009 at 9:16 AM, Johan

Re: maven guru/wickstuff project maintainers..

2009-02-19 Thread Johan Compagner
and now it works fine. I think it is the network between that server and wicketstuff somehow. Because it is really not reachable when making a socket connection i will try to monitor it On Thu, Feb 19, 2009 at 09:34, nino martinez wael nino.martinez.w...@gmail.com wrote: Yeah I know.. I

ListView within a stateless form

2009-02-19 Thread Sandro Böhme
Hello, first of all I can say that I very much like the concepts of wicket. This is basically the first web framework whose concepts align with my understanding of how a web framework should separate the view, the business logic and the model. In a large web application we would like to work

Re: Drop Down Box - Ajax Behaviour

2009-02-19 Thread Daniel Ferreira Castro
The method getHibernateTransaction is a need :) Hibernate complains if I try to do a select without an active transaction. But this is not the case, it is working fine - no runtime errors - so it is ok at the moment :) My problem is that After I submit the form, inserting on the bank a new

how to hide parameter in URL? for parameters

2009-02-19 Thread wch2001
Dear all, I am doing a project , there is one url with some parameters as below http://localhost:8080/dira/?wicket:bookmarkablePage=%3Asg.sphsearch.dira.web.wicket.pages.company.CompanyDetailoriginPage=companyorganizationId=191834 If I set mountBookmarkablePage in webApplication for

Re: how to hide parameter in URL? for parameters

2009-02-19 Thread taha siddiqi
use a post request !! tawus On Thu, Feb 19, 2009 at 2:31 PM, wch2001 wch2...@hotmail.com wrote: Dear all, I am doing a project , there is one url with some parameters as below

AW: Avoid serialization troubles with static members

2009-02-19 Thread Christian Helmbold
Thanks for your answer. Wouldn't it be sufficient to use a static member to hold a reference to a service? i.e. public class SomeWicketComponent{ private static MyService service; // ... } How would you intialize these? Would you have a static getter, and force yourself

Re: Avoid serialization troubles with static members

2009-02-19 Thread Johan Compagner
but if you just use static fields then the only thing you have to do in your app is when the Application.init() is called you just set them once through a static setter on that component. (or reflection) So you have to do all your injection over your components onces at startup of your

Re: AW: Avoid serialization troubles with static members

2009-02-19 Thread Michael Sparer
if the org.apache is missing, you're using an old version of wicket. check your dependencies for 1.2 versions (the version before wicket moved to apache) for the DI stuff: I'm using the annotation approach throughout my applications and never had any problems regards, Michael

HTML creation tool

2009-02-19 Thread Edwin Ansicodd
Any css based HTML creation tool recommended by Wicket users? -- View this message in context: http://www.nabble.com/HTML-creation-tool-tp22098061p22098061.html Sent from the Wicket - User mailing list archive at Nabble.com.

AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread Christian Helmbold
if the org.apache is missing, you're using an old version of wicket. I use Wicket 1.4 RC2. Maybe I use an old version (1.2.7) of the Spring integration. Where can I get the current version? http://cwiki.apache.org/WICKET/spring.html says nothing about where to download it (without maven)..

AW: HTML creation tool

2009-02-19 Thread Christian Helmbold
Any css based HTML creation tool recommended by Wicket users? Are you looking for a so called WYSIWYG editor? Adobe Dreamweaver is my favorite. Regards, Christian - To unsubscribe, e-mail:

Re: AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread Michael Sparer
then I'd recommend using maven (or similar) :-) managing all dependencies manually seems to me quite masochistically and yepp, you're using an old version of spring integration then ... christian.helmbold wrote: if the org.apache is missing, you're using an old version of wicket. I use

Can a TreeTable be pagable?

2009-02-19 Thread CraigGreenhalhj
-- View this message in context: http://www.nabble.com/Can-a-TreeTable-be-pagable--tp22098653p22098653.html Sent from the Wicket - User mailing list archive at Nabble.com. - To unsubscribe, e-mail:

Re: AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread James Carman
Yes, but if the frameworks and tools can make you actually more productive, why not use them? The @SpringBean annotation-based approach just works. I've never had any troubles with it and I really don't have to think about it. There's a very shallow learning curve, especially if you're already

Remove ancient Spring integration

2009-02-19 Thread Christian Helmbold
I've downloaded the Wicket-Spring integration from http://sourceforge.net/project/showfiles.php?group_id=119783package_id=182494 but this site seems to be dead. Is one of the mainters here? Please remove this dead project from Source Forge to avoid confusion. Tanks. Christian --

Re: AW: HTML creation tool

2009-02-19 Thread Edwin Ansicodd
Thank you for your post! Yes, I would imagine a WYSIWYG editor would be best. Are there any open source or freeware tools you like? christian.helmbold wrote: Any css based HTML creation tool recommended by Wicket users? Are you looking for a so called WYSIWYG editor? Adobe

Re: AW: Avoid serialization troubles with static members

2009-02-19 Thread Martijn Dashorst
If you don't want to use maven, then download the distribution of Wicket, and look in the lib folder. All the wicket jars are there. How did you get wicket-1.4-rc2.jar then? Martijn On Thu, Feb 19, 2009 at 12:10 PM, Christian Helmbold christian.helmb...@yahoo.de wrote: if the org.apache is

AW: AW: HTML creation tool

2009-02-19 Thread Christian Helmbold
I've searched several times for open source WYSIWYG HTML editors but all I've found is poor - especially compared to Dreamweaver. Dreamweaver is not cheap but it is a good investment. You'll be very productive and it's fun! I wish there would be something comparable in the open source sphere.

Re: Remove ancient Spring integration

2009-02-19 Thread Martijn Dashorst
How is matching the right versions of your dependencies confusing? Did you care to take a look inside your Wicket distribution that we carefully crafted such that everything is available in one download (Wicket Ultimate)? Did you take a look at the location where you downloaded the wicket jar and

AW: Remove ancient Spring integration

2009-02-19 Thread Christian Helmbold
How is matching the right versions of your dependencies confusing? I found the mentioned website and looked for the most recent version. I thought that this was the official and only site to get Wicket's Spring integration. Did you care to take a look inside your Wicket distribution that we

Re: Yet another Wicket quick start application...

2009-02-19 Thread Richard Allen
True. And I have no problem with that. I'll update the wiki with what I know before the end of the week. However, I believe the good management of projects is in large part what makes them a success. On Wed, Feb 18, 2009 at 11:54 AM, Martijn Dashorst martijn.dasho...@gmail.com wrote: Most

[announce] Apache Wicket Merchandise awards

2009-02-19 Thread nino martinez wael
Hi Guys The first award for helping the Wicket community goes to Daan van Etten for providing graphics to the merchandise... You can read more about the merchandise shop and nominate your own favorite here: http://ninomartinez.wordpress.com/2009/02/19/apache-wicket-merchandise-shop/ And

Re: HTML creation tool

2009-02-19 Thread nino martinez wael
I just use the eclipse html/css syntax support.. And then check if it's working with Firefox and then with browsershots.org for a larger amount of browsers. 2009/2/19 Edwin Ansicodd erik.g.hau...@gmail.com Any css based HTML creation tool recommended by Wicket users? -- View this message in

Re: Problems with ListMultipleChoice component

2009-02-19 Thread David R Robison
Yes, and thanks for the quick response. What is missing from the example is how to read the list of selected items. Here is some of my code fragments. Any thoughts? private LinkedListDeviceGeneric addDevicesList = new LinkedListDeviceGeneric(); ... add(new

Re: HTML creation tool

2009-02-19 Thread John Armstrong
My favorite CSS based HTML creation tool is Rent-A-Coder. John- On Thu, Feb 19, 2009 at 2:59 AM, Edwin Ansicodd erik.g.hau...@gmail.com wrote: Any css based HTML creation tool recommended by Wicket users? -- View this message in context:

wicket extensions: Palette

2009-02-19 Thread Vasily Vasilkov
Hi I use the Palette component and I need to fill both palette's lists when I create palette. For example, a have ListString availableValues = new ArrayListString(); // add 5 strings into this list ListString selectedValues = new ArrayListString(); // add 3 strings creating palette (this is

Problem with Forms within Navomatic

2009-02-19 Thread Hagen Dasz
Hello ! I'm new to wicket, after testing the navomaticBorder stuff, i got a question about adding a form into the span wicket:id = navomaticBorder /span area: Doing this drops a hierarchy does not match Error... Any suggestions about MarkupContainer and hierarchies are welcome! Thanks in

Re: wicket extensions: Palette

2009-02-19 Thread nino martinez wael
I think your selected strings should match those in available.. I cant remember if palette uses a choicerender.. Then you implement a custom one.. I'd recommend using models anyhow.. 2009/2/19 Vasily Vasilkov chand0s@gmail.com Hi I use the Palette component and I need to fill both

Re: Problem with Forms within Navomatic

2009-02-19 Thread Hagen Dasz
Sorry i forgot to put the code snippets into the mail: Hello ! I'm new to wicket, after testing the navomaticBorder stuff, i got a question about adding a form into the span wicket:id = navomaticBorder /span area: Doing this drops a hierarchy does not match Error... Any suggestions

[JOB] Web application developer (The Hague, Netherlands)

2009-02-19 Thread Reinout van Schouwen
At the Huygens Institute in The Hague, two positions are available for web application developers, preferably with Wicket experience. Digital text editions and building text analysis tools play an important role in research and development at the Huygens Institute. In close cooperation with text

Re: Problems with ListMultipleChoice component

2009-02-19 Thread David R Robison
Opps... Due to a cut and paste error I had default form processing set to false. Now don't I feel silly! Thanks, David David R Robison wrote: Yes, and thanks for the quick response. What is missing from the example is how to read the list of selected items. Here is some of my code fragments.

London Wicket Event

2009-02-19 Thread Reinout van Schouwen
Hi Cemal, Op donderdag 05-02-2009 om 01:39 uur [tijdzone -0800], schreef jWeekend: It looks like we already have 5 or 6 people quite keen to join in from our London Wicket Event last night, (...) On behalf of my colleague Ronald and myself I'd just like to mention that our short visit to

Wicket newbie - Quickstart help required

2009-02-19 Thread nicgould
Hi there, I set up a wicket 1.3.5 project using the quickstart instructions from wicket.apache.org. I successfully got the test page up and running using Jetty. I tried adding a basic form with a textbox to the page using code taken from Wicket in Action. However when recompiling I got the

form - ajax submit and validation

2009-02-19 Thread Vitek Tajzich
Hi guys, I have form and AjaxButton as submit button for the form. If I use non ajax button validation is called and input fields are validated. But If I use AjaxButton then validation are passedWhat should I do to get form validated even If I use ajax button? thank you, Vitek

Re: sepearte stylesheet refrences for page and panel

2009-02-19 Thread rjilani
Hi: Jeremy sorry for the late reply, HeaderContributor is now working, the reason it was not working before because I didn't pay attention that I had to use add(HeaderContributor.forCss(RegisteredUserPanel.class, register.css) ) in my code instead of just

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
maybe this helps. http://fisheye3.atlassian.com/browse/wicket-stuff/trunk/wicketstuff-core/pom.xml?r=4567#l383 maven obviously compiles with java version 1.3 if you use annotations you need to compile against 1.5 the maven compiler plugin needs to be configured as in the example above. mf

drop down default item string is erroneous

2009-02-19 Thread rossputin
Hi guys, hoping you can help. At some point during the last couple of days, possibly today, I received some dependency updates, and now all of my DropDownChoice components are displaying a nonsense string for the default item instead of 'Choose One'. I typically point to the 1.4-SNAPSHOT

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread nicgould
Martin, Thanks for your help. I tried adding the following to my pom.xml within plugins plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-compiler-plugin/artifactId configuration

Re: Yet another Wicket quick start application...

2009-02-19 Thread francisco treacy
hi richard, part of your concerns are addressed in wickethub. i launched it a few weeks ago but time is scarce to maintain it (anyway, it is open source so anyone can access the code / contribute). there are still issues and lots of things we want to do. i'm thinking over the domain model and

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread rjilani
Would you please make sure what version of Java are you using. Annotaions are only supported from version 1.5 and forward. Regards, RJ. nicgould wrote: Hi there, I set up a wicket 1.3.5 project using the quickstart instructions from wicket.apache.org. I successfully got the test page up

Re: London Wicket Event

2009-02-19 Thread jWeekend
Reinout, It was good to see you and Ronald there and to know that you enjoyed your time with us - we have again had a lot of excellent feedback but it's always good (and still a bit surprising) that so many people travel, for just one night, to our events in London! Anyway, closer to home, you

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread nicgould
I am using Java 1.6, here is the output of mvn --version: Maven version: 2.0.9 Java version: 1.6.0_11 OS name: linux version: 2.6.27.7-9-debug arch: i386 Family: unix rjilani wrote: Would you please make sure what version of Java are you using. Annotaions are only supported from version

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
Maybe this spoon will feed you right: http://www.sonatype.com/download.php?file=books/maven-definitive-guide.pdf 2009/2/19 nicgould wic...@nicgould.co.uk Martin, Thanks for your help. I tried adding the following to my pom.xml within plugins plugin

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martijn Dashorst
Do you use an IDE? Non-IDE development using just command line tools is really masochistic. Grab eclipse, netbeans, intellij, or something that provides autocompletion, and autoimports. Martijn On Thu, Feb 19, 2009 at 5:10 PM, nicgould wic...@nicgould.co.uk wrote: I am using Java 1.6, here is

Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
Hi: Gurus I am trying to make an invisible panel visible via Ajax link, but got stuck at a point where I don't know how to proceed further. Please see the code snipet below final RegisteredUserPanel registeredUserPanel = new RegisteredUserPanel(registrationPanel);

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Martijn Dashorst
http://tinyurl.com/dmhfub On Thu, Feb 19, 2009 at 5:14 PM, rjilani jil...@lifebiosystems.com wrote: Hi: Gurus I am trying to make an invisible panel visible via Ajax link, but got stuck at a point where I don't know how to proceed further. Please see the code snipet below final

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Ernesto Reinaldo Barreiro
Maybe setOutputMarkupPlaceholderTag(outputTag) can help you? On Thu, Feb 19, 2009 at 5:14 PM, rjilani jil...@lifebiosystems.com wrote: Hi: Gurus I am trying to make an invisible panel visible via Ajax link, but got stuck at a point where I don't know how to proceed further. Please see the

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
put the panel in an additional container and add this container WebmarkupContainer div = new WebmarkupContainer(cont); div.setOutputMarkupId(true); div.add(registeredUserPanel.setVisible(false)); then in the onclick stuff registeredUserPanel.setVisible(true); target.addComponent(div); that

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread nicgould
It's a forbidden link for me but I get the hint ;) will read up on Maven myself. Thanks for your help anyway. Nic Martin Funk-3 wrote: Maybe this spoon will feed you right: http://www.sonatype.com/download.php?file=books/maven-definitive-guide.pdf 2009/2/19 nicgould

Re: drop down default item string is erroneous

2009-02-19 Thread Igor Vaynberg
i just ran the tests and Tests run: 768, Failures: 0, Errors: 0, Skipped: 0 also, your log shows that there are 0 errors and failures, so how come you have failed tests listed below? -igor On Thu, Feb 19, 2009 at 7:53 AM, rossputin rossaj...@yahoo.co.uk wrote: Hi guys, hoping you can help.

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Igor Vaynberg
this has nothing to do with maven, looks like you are missing imports for classes like Form and Model. like Martjin said, use an ide. -igor On Thu, Feb 19, 2009 at 8:29 AM, nicgould wic...@nicgould.co.uk wrote: It's a forbidden link for me but I get the hint ;) will read up on Maven myself.

Re: Problem with Forms within Navomatic

2009-02-19 Thread Igor Vaynberg
you are putting the form inside the border, so you have to add it to the border or make the border transparent by overriding istransparentresolver() and returning true. -igor On Thu, Feb 19, 2009 at 6:42 AM, Hagen Dasz hagend...@gmx.de wrote: Sorry i forgot to put the code snippets into the

Re: wicket extensions: Palette

2009-02-19 Thread Igor Vaynberg
selected has to be a subset of available, so also add your selected strings to available. -igor On Thu, Feb 19, 2009 at 6:09 AM, Vasily Vasilkov chand0s@gmail.com wrote: Hi I use the Palette component and I need to fill both palette's lists when I create palette. For example, a have

Re: Remove ancient Spring integration

2009-02-19 Thread Igor Vaynberg
sf.net is alive to make wicket 1.2.x and all its dependencies available. wicket-1.3.x lives in apache. -igor On Thu, Feb 19, 2009 at 3:45 AM, Christian Helmbold christian.helmb...@yahoo.de wrote: I've downloaded the Wicket-Spring integration from

Re: drop down default item string is erroneous

2009-02-19 Thread rossputin
Hi. Sorry the complete print out is... Running org.apache.wicket.resource.BundleStringResourceLoaderTest Tests run: 6, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.018 sec Results : Failed tests: testDefault(org.apache.wicket.redirect.encodingtest.RequestEncodingTest)

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
Thanks Michael the trick worked like a charm. Best Regards, RJ. Michael Sparer wrote: put the panel in an additional container and add this container WebmarkupContainer div = new WebmarkupContainer(cont); div.setOutputMarkupId(true); div.add(registeredUserPanel.setVisible(false));

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Igor Vaynberg
setoutputmarkupplaceholdertag that ernesto mentioned is the non-trick solution to your problem. -igor On Thu, Feb 19, 2009 at 8:39 AM, rjilani jil...@lifebiosystems.com wrote: Thanks Michael the trick worked like a charm. Best Regards, RJ. Michael Sparer wrote: put the panel in an

Re: Can a TreeTable be pagable?

2009-02-19 Thread Igor Vaynberg
it doesnt make sense to have a pageable tree -igor On Thu, Feb 19, 2009 at 3:36 AM, CraigGreenhalhj craig.greenha...@intersoftsolutions.co.uk wrote: -- View this message in context: http://www.nabble.com/Can-a-TreeTable-be-pagable--tp22098653p22098653.html Sent from the Wicket - User

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread rjilani
Thanks Martijn it was cute:-) next time I remember it. BTW my Kudos to you for writing such an awesome book on Wicket. Really good work. Best Regards, RJ. Martijn Dashorst wrote: http://tinyurl.com/dmhfub On Thu, Feb 19, 2009 at 5:14 PM, rjilani jil...@lifebiosystems.com wrote: Hi:

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Matt Welch
The key, as others have alluded to and you discovered yourself, is that setting a component's visibility to false will cause that component to not be rendered. I know in the back of some people minds (mine included) we think invisible means it's there, we just can't see it). Well, in this case

Re: Feedback message isn't displayed

2009-02-19 Thread Gary Evesson
I'm seeing the same issue with 1.4 rc2. Gary On Wed, Feb 18, 2009 at 1:17 AM, Jakub Srba jakub.s...@email.cz wrote: Here is a simpler example that doesn't work for me either: ProblemPage.java: public class ProblemPage extends WebPage { @SuppressWarnings(serial) public

Re: Problem with Forms within Navomatic

2009-02-19 Thread Hagen Dasz
Thank You Igor ! That helps, i added it to my border... Snippet: NavomaticBorder navomaticBorder = new NavomaticBorder(navomaticBorder); navomaticBorder.add(new Test(formTest)); add (navomaticBorder); and it works! hagen Original-Nachricht Datum: Thu, 19 Feb 2009

bookmarkable links

2009-02-19 Thread Matías Tito
Hi, I am beginnig on Wicket. Well, my questions is: Diferences beetwen bookmarkablelink and links - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apache.org

Re: Making an invisible panel visible via AjaxLink

2009-02-19 Thread Michael Sparer
uff. yeah right :-) igor.vaynberg wrote: setoutputmarkupplaceholdertag that ernesto mentioned is the non-trick solution to your problem. -igor On Thu, Feb 19, 2009 at 8:39 AM, rjilani jil...@lifebiosystems.com wrote: Thanks Michael the trick worked like a charm. Best Regards,

Re: drop down default item string is erroneous

2009-02-19 Thread Igor Vaynberg
im guessing this is one of those issues that doesnt show up on windows. what platform are you working on? -igor On Thu, Feb 19, 2009 at 8:38 AM, rossputin rossaj...@yahoo.co.uk wrote: Hi. Sorry the complete print out is... Running org.apache.wicket.resource.BundleStringResourceLoaderTest

Re: Can a TreeTable be pagable?

2009-02-19 Thread CraigGreenhalgh
I disagree. Here the senario. I have a tree table with 10 parent nodes. I have this is a pageable table (2 pages of 5 rows). I open up the 1st node in the 1st page, it has 50 children in, this increases the overall rows in the table and hence number of pages. It still maintains only 5 rows

Re: form - ajax submit and validation

2009-02-19 Thread Matt Welch
I think more information is needed before someone can provide a useful response: Are you initializing the AjaxButton with the form (in the the constructor of the AjaxButton or with setter)? Is the form data being submitted? If not, this would indicate a problem somewhere other than in the

Re: Can a TreeTable be pagable?

2009-02-19 Thread Matej Knopp
If you have node that has 10k children then it is obvious that there is something wrong either with your data structure or the way you present it. Pageable tree doesn't make much sense. If you are on 15th page, how do you know what parents the nodes you see have? It's against the purpose of tree -

DatePicker configuration isn't always working

2009-02-19 Thread Trent Larson
We are trying to use the DatePicker, only allowing the selection of days 5-25 of each month. We've tried adding the following renderer to work with the OutOfBoundsDate, but it doesn't work when the calendar is initially shown. For example, if the pageDate of the calendar is set to 03/2009, the

ACEGI and Kerberos Security

2009-02-19 Thread David R Robison
Does anyone have an example of integrating ACEGI security with Kerberos authentication in a Wicket application? Thanks, David -- David R Robison Open Roads Consulting, Inc. 103 Watson Road, Chesapeake, VA 23320 phone: (757) 546-3401 e-mail: drrobi...@openroadsconsulting.com web:

Re: how to hide parameter in URL? for parameters

2009-02-19 Thread Jeremy Thomerson
A post isn't always the answer, obviously, if you need a bookmarkable page. Look at the IndexedParamUrlCodingStrategy - that's what you need. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Feb 19, 2009 at 3:12 AM, taha siddiqi tawushaf...@gmail.com wrote: use a post request !!

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
things that happen while beeing in haste ;-) its this, what I meant: http://www.sonatype.com/maven/documentation/download-book?file=books/maven-definitive-guide.pdf which 'seriously' is a readable source for information. at least on the maven subject. mf 2009/2/19 nicgould wic...@nicgould.co.uk

Re: drop down default item string is erroneous

2009-02-19 Thread rossputin
Mac OSX Leopard, with all the latest updates. Java 1.5.0_16 Maven 2.0.9 Wicket 1.4-SNAPSHOT revision : 745941 Regards, Ross igor.vaynberg wrote: im guessing this is one of those issues that doesnt show up on windows. what platform are you working on? -igor On Thu, Feb 19, 2009 at

Re: drop down default item string is erroneous

2009-02-19 Thread Igor Vaynberg
i guess this will have to wait for martijn or matej or someone else with a mac/unix to debug. -igor On Thu, Feb 19, 2009 at 9:44 AM, rossputin rossaj...@yahoo.co.uk wrote: Mac OSX Leopard, with all the latest updates. Java 1.5.0_16 Maven 2.0.9 Wicket 1.4-SNAPSHOT revision : 745941

Re: Can a TreeTable be pagable?

2009-02-19 Thread CraigGreenhalgh
I'm bound by client requirements for the data structure so there's not much I can do about having 10k children. I'm trying to resolve the ways its presented by having a pageable tree table! In response to If you are on 15th page, how do you know what parents the nodes you see have? It's

Re: how to hide parameter in URL? for parameters

2009-02-19 Thread Cristiano Kliemann
wch, Why do you need to make a bookmarkable page and hide its parameters? It doesn't make much sense to me. The main purpose of bookmarkable pages is, like the name says, to let the user bookmark them (by copying to a text file, for example) with all the parameters needed to show what you intend

Re: Can a TreeTable be pagable?

2009-02-19 Thread Igor Vaynberg
you need a different metaphor than the treetable to represent this. -gior On Thu, Feb 19, 2009 at 9:51 AM, CraigGreenhalgh craig.greenha...@intersoftsolutions.co.uk wrote: I'm bound by client requirements for the data structure so there's not much I can do about having 10k children. I'm

Re: how to hide parameter in URL? for parameters

2009-02-19 Thread Jeremy Thomerson
Sorry - I thought she wanted to hide the parameter *names* and leave the values. My bad. On Thu, Feb 19, 2009 at 11:53 AM, Cristiano Kliemann cristia...@gmail.comwrote: wch, Why do you need to make a bookmarkable page and hide its parameters? It doesn't make much sense to me. The main

Re: bookmarkable links

2009-02-19 Thread Jeremy Thomerson
bookmarkable links are bookmarkable - you can come back to them even after session is destroyed or send to a friend and they can come to them links are not bookmarkable - relative only to your session - and stateful On Thu, Feb 19, 2009 at 10:55 AM, Matías Tito mt...@zauber.com.ar wrote: Hi, I

Re: AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread Jeremy Thomerson
vi is not only a tool, but a whole platform, so that would exclude it. Personally, I find that echo import org.apache.wicket.* MyClass.java echo import java.util.* MyClass.java works best. :) j/k j/k -- Jeremy Thomerson http://www.wickettraining.com On Thu, Feb 19, 2009 at 10:40 AM, Igor

[wicket-rad] Problem creating form

2009-02-19 Thread Kaspar Fischer
I hope this is the right list for wicket-rad questions? (The one on SourceForge is empty.) I am trying to create a form using Wicket-RAD 0.6 and get Caused by: java.lang.NoSuchMethodError: org.wicketrad.jpa.propertyeditor.CreateBeanForm.add(Lorg/apache/wicket/

Re: [wicket-rad] Problem creating form

2009-02-19 Thread wfaler
Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD-f35257.html However, looking at your code, what version of Wicket are you using, and is it really on the classpath? the add call on the line referred to in the stacktrace is

Re: [wicket-rad] Problem creating form

2009-02-19 Thread Kaspar Fischer
On 19.02.2009, at 19:34, wfaler wrote: Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD-f35257.html Sorry! I will post a next topic to that forum. However, looking at your code, what version of Wicket are you using,

Re: wicket extensions: Palette

2009-02-19 Thread Vasily Vasilkov
I've done it! Two reasons why it didn't work: 1) Select list has to be sub-list of available list (thank you, Igor and Nino) 2) idExpression parameter has not to be null (e.g. new ChoiceRenderer(blah-blah-blah, null) didn't work correctly)

onclick code generated for image

2009-02-19 Thread miro
code from my html page td /audit/app/editAuditProg

Re: AW: AW: Avoid serialization troubles with static members

2009-02-19 Thread John Krasnay
javac is kinda redundant too. Real men sling raw bytecode. jk On Thu, Feb 19, 2009 at 12:02:36PM -0600, Jeremy Thomerson wrote: vi is not only a tool, but a whole platform, so that would exclude it. Personally, I find that echo import org.apache.wicket.* MyClass.java echo import

Uploading A File

2009-02-19 Thread walnutmon
I'm not sure exactly where this belongs, but I need to upload a file, after checking the example I noticed that it throws an internal error whenever I try to use it... That's not the behavior I hope to emulate... Does anyone have an easy way to get a file upload through wicket? Thanks! Justin

Re: Yet another Wicket quick start application...

2009-02-19 Thread Richard Allen
I like the wickethub.org idea! Thank you for your contribution. I'm assuming the site doesn't crawl the Internet looking for Wicket things. If I'm correct, then people have to post there. Which means people have to know about it, both to benefit from it and to contribute to it. I see no mention

Re: Uploading A File

2009-02-19 Thread Jeremy Thomerson
Yes - it works well. You didn't provide the error, so of course that means that we can't help you debug it. Even short of that, I'd suspect that if you are running a recent (RC1 / RC2) release of Wicket 1.4, that you need to pass your FileUploadField a model when you instantiate it.

image inside anchor tag

2009-02-19 Thread miro
I having trouble with using image inside anchor tag , wicket is adding onclick=window.location.href='/audit/images/edit.gif';return false; so when user clicks on the link image is opened and not the link .Please help me resolve this generated code a href=/audit/app/editAuditProg

Re: WML + Wicket experiences?

2009-02-19 Thread Martin Makundi
it's totally possible. did it at a company last year (but that's proprietary, of course). Cool. Can you give a hint if you could re-use Form components in Wml? go method=post href=??? postfield name=userId value=$(userId) / postfield name=password value=$(password) / /go What is the

Re: WML + Wicket experiences?

2009-02-19 Thread Jeremy Thomerson
I've never tried it, but I would suspect that I would start by creating something like: public class WapForm extends Form { protected void onComponentTag(final ComponentTag tag) { // copy the code from Form.onComponentTag to here and change the action and tag, etc... } } Form

resourcereference and images

2009-02-19 Thread miro
In my application all my images are inside Root-folder/images I having trouble using images in my pages In my BasePage.java protected static final ResourceReference EDIT_IMAGE=new ResourceReference(BasePage.class,/images/edit.gif); protected static final ResourceReference

Re: WML + Wicket experiences?

2009-02-19 Thread Martin Makundi
I can actually 'bypass' the form very easily by setting setRenderBodyOnly(true) and overriding the onComponentTagBody with renderComponentTagBody(markupStream, openTag); My concern is on the processing side. How can I trigger/attach a suitable requestListener/IFormSubmittingComponent? Preferably

Re: [wicket-rad] Problem creating form

2009-02-19 Thread Kaspar Fischer
On 19.02.2009, at 19:42, Kaspar Fischer wrote: On 19.02.2009, at 19:34, wfaler wrote: Hi, Wicket RAD is actually not officially part of Wicket, so the right forum is here: http://www.nabble.com/Wicket-RAD-f35257.html Sorry! I will post a next topic to that forum. However, looking at

Re: WML + Wicket experiences?

2009-02-19 Thread Jeremy Thomerson
Wouldn't you get that automatically using the code I gave below? Form, in it's onComponentTag, generates a URL that is for submitting the form. So, if you use that in the href of your go tag, the form should just work. I'd think, anyway. On Thu, Feb 19, 2009 at 5:05 PM, Martin Makundi

  1   2   >