Re: [Wicket-user] Different type of components in wicket.extensions.markup.html.tree.Tree

2006-11-23 Thread Peter Klassen
Hi Eelco, thank you very much for your postings/mails. But To the topic: Suppose you wan't to create a tree: root-node with some icon-links including hints, and the regular icon/link/label-combination 1.child-node, works like already given 2. child-node e.g. same as root-node, but

Re: [Wicket-user] Different type of components in wicket.extensions.markup.html.tree.Tree

2006-11-23 Thread Matej Knopp
Hi, look at the Tree class - it extends DefaultAbstractTree. Use the same approach as tree does (you can copy the html template) and put in nodes whatever you want. -Matej Peter Klassen wrote: Hi Eelco, thank you very much for your postings/mails. But To the topic: Suppose you wan't to

Re: [Wicket-user] Interesting alternatives to Hibernate

2006-11-23 Thread Gwyn Evans
On 23/11/06, Carfield Yim [EMAIL PROTECTED] wrote: You're missing one of the strong points (for me) of iBatis! Simply enable Debug level logging for the java.sql loggers, e.g. log4j.logger.java.sql=DEBUG or if you want to fine tune it...

[Wicket-user] Problem of writing unit test with method that will return an instance of WebPage

2006-11-23 Thread Carfield Yim
Say I am having method like public WebPage execute(Account account) throws SQLException { // opertion of account return new Registration(account); } If I run this method in Junit it will fail for various difference reasons. I wonder if there any globe setup can make

Re: [Wicket-user] Problem of writing unit test with method that will return an instance of WebPage

2006-11-23 Thread Martijn Dashorst
Take a look at the wicket test cases. You need to work with WicketTester. Martijn On 11/23/06, Carfield Yim [EMAIL PROTECTED] wrote: Say I am having method like public WebPage execute(Account account) throws SQLException { // opertion of account return new

Re: [Wicket-user] Problem of writing unit test with method that will return an instance of WebPage

2006-11-23 Thread Carfield Yim
On 11/23/06, Martijn Dashorst [EMAIL PROTECTED] wrote: Take a look at the wicket test cases. You need to work with WicketTester. Where is it? Is there public SVN access? - Take Surveys. Earn Cash. Influence the Future of IT

Re: [Wicket-user] Problem of writing unit test with method that will return an instance of WebPage

2006-11-23 Thread Frank Bille
http://wicket.sourceforge.net/apidocs/wicket/util/tester/WicketTester.html http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.3/wicket/src/test/java/ Frank On 11/23/06, Carfield Yim [EMAIL PROTECTED] wrote: On 11/23/06, Martijn Dashorst [EMAIL PROTECTED] wrote: Take a look

[Wicket-user] Unit test fragment

2006-11-23 Thread Carfield Yim
Usually I use following code to assert component under a Panel tester.assertComponent(DummyPanelPage.TEST_PANEL_ID+:+componentId, componentClass); However, look like it don't work with fragment, is that I need to do something special for fragment?

[Wicket-user] surely

2006-11-23 Thread GNU gccrather
Guess wouldnot bother in attack again thisi of removed because a were. Beat handsdown arealso drawn entropyof human. Now good little trog or. Stupid generally regarding computer security Ican forsee or. Added map providing guessing material or! Its too is big a. Fubar fub grunt am compresses

[Wicket-user] SortableDataProvider, size() iterator(int first, int count), Correct execution order?

2006-11-23 Thread Manu
Hi, there, I have the following composition: WebPage ... ... DataView CustomProvider extends SortableDataProvider ... PagingNavigator DataView The ERROR? I found is this: When clicking on any of the navigation buttons (PagingNavigator), my CustomProvider implementation is managed by Wicket

[Wicket-user] SortableDataProvider, size() iterator(int first, int count), Correct execution order?

2006-11-23 Thread Manuel Barzi
Hi, there, I have the following composition: WebPage ... ... DataView CustomProvider extends SortableDataProvider ... PagingNavigator DataView The ERROR? I found is this: When clicking on any of the navigation buttons (PagingNavigator), my CustomProvider implementation is managed by Wicket

Re: [Wicket-user] Problem of writing unit test with method that will return an instance of WebPage

2006-11-23 Thread Carfield Yim
Thx, in fact I should look it up myself On 11/23/06, Frank Bille [EMAIL PROTECTED] wrote: http://wicket.sourceforge.net/apidocs/wicket/util/tester/WicketTester.html http://svn.apache.org/viewvc/incubator/wicket/releases/wicket-1.2.3/wicket/src/test/java/ Frank On 11/23/06, Carfield Yim

[Wicket-user] E-mails para mala direta, listas de emails atualizados

2006-11-23 Thread Marcia Ribeiro
Visite: http://www.gueb.de/divulgamail mala direta e-mail, email regiões, e-mails região, mala direta por email, marketing e-mail, cadastro e-mails, publicidade por email. regiões, emails região, divulgar, enviar emails, campanha emails, propaganda emails, email cidade, envio anônimo emails,

Re: [Wicket-user] Interesting alternatives to Hibernate

2006-11-23 Thread Carfield Yim
Great information, thx Fair enough, if it works for you. I just checked the docs again and noticed the following - Could it be anything like that involved your case? The internal log factory will delegate logging information to one of the following log implementations: 1. Jakarta

Re: [Wicket-user] SortableDataProvider, size() iterator(int first, int count), Correct execution order?

2006-11-23 Thread Igor Vaynberg
size() is meant to retrieve the total number of entries iterator() is meant to retrieve the subset that fits into the current page so these two things are largely unrelated - eg two different queries to the database still there is enough flexibility to accomplish what you want class

Re: [Wicket-user] Databinder 1.0

2006-11-23 Thread Mats Norén
Congrats! :) Btw, how difficult would it be to reuse the different models from within a Spring based solution? The project I'm working on uses Spring for different kinds of services (JBPM, Email etc) and there is a need to keep things in the same place so to speak but I really like the different

[Wicket-user] Question about XML processing in wicket

2006-11-23 Thread Carfield Yim
Just wonder can I fill the wicket template directly from xml tag, say I have an xml like body tag1value1/tag1 tag2value2/tag2 /body Can I have wicket template like html body Tag1 is wicket:xml wicket:id=body:tag1/wicket:xml Tag2 is wicket:xml wicket:id=body:tag2/wicket:xml /body /html

[Wicket-user] Where can I find source package of wicket?

2006-11-23 Thread Carfield Yim
There is only binary package at http://sourceforge.net/project/showfiles.php?group_id=119783 , just wonder where can I find source package? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay

Re: [Wicket-user] Where can I find source package of wicket?

2006-11-23 Thread Juergen Donnerstag
http://wicket.sourceforge.net/source-repository.html On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: There is only binary package at http://sourceforge.net/project/showfiles.php?group_id=119783 , just wonder where can I find source package?

Re: [Wicket-user] Question about XML processing in wicket

2006-11-23 Thread Juergen Donnerstag
And what do want to achieve? What is the input markup and what your expected output markup? Juergen On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: Just wonder can I fill the wicket template directly from xml tag, say I have an xml like body tag1value1/tag1 tag2value2/tag2 /body

[Wicket-user] Check the economics before deciding whether to spring for the SUV or rent one the few times a year you pack heavy.

2006-11-23 Thread argumentative
Check the economics before deciding whether to spring for the SUV or rent one the few times a year you pack heavy. A short comment from him was just broadcast on Colombian television, in which he . Commentary by Jennifer Granick. Commentary by Tony Long. kk *** CNHC *** CNHC *** CNHC *** Trade

Re: [Wicket-user] Where can I find source package of wicket?

2006-11-23 Thread Carfield Yim
So I must build myself? Too bad that I don't know maven yet.. On 11/24/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: http://wicket.sourceforge.net/source-repository.html On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: There is only binary package at

[Wicket-user] Can I set the DropDownChoice to String[] or List instead of String?

2006-11-23 Thread Carfield Yim
I need to allow multiple selection of a selection list, can I do it at DropDownChoice or I have to use checkbox? - Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the