Re: [Wicket-user] multi-file upload component

2007-03-03 Thread Frank Bille
Thats really cool. :) I think that we can remove the header from the javascript file, but we have to add his notice to our NOTICE as well as saying that it is under PUBLIC DOMAIN (do you agree?) Frank On 3/1/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: a few people were talking about the nee

Re: [Wicket-user] multi-file upload component

2007-03-03 Thread Frank Bille
On 3/3/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I guess we'd rather keep the credit in the code. That is what he's asking for. It's not part of the "license" though. It's not a requirement. I don't personally mind that the header stays, but as far as I can see all he's asking is for at

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
I get the same error and have tried to remove local jar files. I'll look into it tonight (can't get workspace setup using new "al" structure) Frank P.s. Ubuntu linux On 3/13/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Probably you have remove the jars from your local repository and build

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
ijn On 3/13/07, John Patterson <[EMAIL PROTECTED]> wrote: > On 13 Mar 2007, at 12:31, Frank Bille wrote: > > > I get the same error and have tried to remove local jar files. I'll > > look into it tonight (can't get workspace setup using new "al" > > st

Re: [Wicket-user] Build failure

2007-03-13 Thread Frank Bille
/13/07, John Patterson <[EMAIL PROTECTED]> wrote: >> On 13 Mar 2007, at 12:31, Frank Bille wrote: >> >>> I get the same error and have tried to remove local jar files. I'll >>> look into it tonight (can't get workspace setup using new "al" >&g

Re: [Wicket-user] Build failure

2007-03-14 Thread Frank Bille
x27;t seem to show it doing the jdk-1.4 module tree for soem reason... /Gwyn On 14/03/07, Frank Bille < [EMAIL PROTECTED]> wrote: > I have upgraded to 2.0.5 and also updated to latest svn version of 1.3, and > I now get a different error: > > http://www.nabble.com/Al%27s-reposit

Re: [Wicket-user] Build failure

2007-03-14 Thread Frank Bille
And why didn't anyone tell me that? We can't all be maven experts ;) Frank On 3/14/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: umm, we already found a solution for that mvn eclipse:eclipse -U which tells maven to update its dependencies woops :) -igor On 3/14/07, Fra

Re: [Wicket-user] Wicket 1.3 ready for development?

2007-03-30 Thread Frank Bille
Yes I would indeed also go for 1.3. I use it in one live system now. The trick right now is just to think before upgrading to latest snapshot all the time. I'm using a version from before the big backports (Model) from around 18. march and I'm not going to upgrade again until the dust has settled

Re: [Wicket-user] Send files with Wicket

2007-05-08 Thread Frank Bille
Hi Galbu It sounds like you are looking for FileUploadField: http://wicket.sourceforge.net/apidocs/wicket/markup/html/form/upload/FileUploadField.html Take a look at the examples: http://www.wicket-library.com/wicket-examples/upload -- Frank On 5/7/07, galbu <[EMAIL PROTECTED]> wrote: He

Re: [Wicket-user] Send files with Wicket

2007-05-08 Thread Frank Bille
cket - library is not really updated anymore: look for the latest examples here: http://wicketstuff.org/wicket13/ On 5/8/07, Frank Bille <[EMAIL PROTECTED]> wrote: > > Hi Galbu > > It sounds like you are looking for FileUploadField: > > http://wicket.sourceforge.n

Re: [Wicket-user] Send files with Wicket

2007-05-08 Thread Frank Bille
On 5/8/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: I think 1.2 are down, so you cant really access it any more? It's very recent then. When I posted the link it worked. Frank - This SF.net email i

Re: [Wicket-user] programmatic access to a wicket site

2007-05-10 Thread Frank Bille
Perhaps take a look at: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket/src/main/java/org/apache/wicket/markup/html/pages/InternalErrorPage.java?view=co specially in the configureResponse section. Frank On 5/10/07, Lowell Kirsh <[EMAIL PROTECTED]> wrote: Strange, it says

Re: [Wicket-user] PopupSettings with no window name set generates invalid xhtml on Link

2007-05-15 Thread Frank Bille
Hi James. Can you open a jira issue for this? https://issues.apache.org/jira/browse/WICKET Regards Frank On 5/11/07, James Renfro <[EMAIL PROTECTED]> wrote: Hi, I've just switched my code over from 1.2 to 1.3 beta, and I'm running into a problem where Wicket seems to be generating invalid x

Re: [Wicket-user] SVN access broken?

2007-05-31 Thread Frank Bille
Hi Ravindra. When using trunk there is sometimes tests that fails. We have just had a similar discussion about it here: http://www.nabble.com/Build-Failed-tf3815817.html#a10802004 It shouldn't be stopping you from working. Frank On 5/23/07, Ravindra Wankar <[EMAIL PROTECTED]> wrote: OK, I

Re: [Wicket-user] How to refresh a wicket.markup.html.panel.Panel

2007-05-31 Thread Frank Bille
You have to call setOutputMarkupId(true) so the javascript can locate it in the HTML. Frank On 6/1/07, wicket0123 <[EMAIL PROTECTED]> wrote: I have a web page that adds the panel as a component. On the same page, I've three ajax links. The goal is to clic on the links will add different co

Re: [Wicket-user] How to refresh a wicket.markup.html.panel.Panel

2007-05-31 Thread Frank Bille
resultPanel.setOutputMarkupId(true); Frank On 6/1/07, Frank Bille <[EMAIL PROTECTED]> wrote: You have to call setOutputMarkupId(true) so the javascript can locate it in the HTML. Frank On 6/1/07, wicket0123 < [EMAIL PROTECTED]> wrote: > > > I have a web page tha

Re: [Wicket-user] DropDownChoice inside ModalWindoe is not displayed in IE

2007-06-04 Thread Frank Bille
Hi Which version do you use. I remember having the same problem but I also remember matej fixing this. This is quite a while ago. Frank On 6/4/07, Nili Adoram <[EMAIL PROTECTED]> wrote: Hi all, I have a panel containing a DropDownChoice . This panel is displayed inside a ModalWindow. This

Re: [Wicket-user] form action url

2007-06-07 Thread Frank Bille
Hi Unless you have a specific reason to use that Filter for authorization I surgest that you take a look at SimplePageAuthorizationStrategy, which allows you to define which pages should be protected: http://www.wicketframework.org/apidocs/wicket/authorization/strategies/page/SimplePageAuthoriza

Re: [Wicket-user] Wicket set initial value

2007-06-08 Thread Frank Bille
Hi Edward In wicket you bind the inputfield to a model. To have a default value, you give the model a value. Take a look at the form example: http://www.wicketstuff.org/wicket13/forminput/ Frank On 6/8/07, Edi <[EMAIL PROTECTED]> wrote: Hi, In HTML, , if value = edward, I can view In ht

Re: [Wicket-user] Tree testing

2007-06-08 Thread Frank Bille
Hi I haven't used the tree yet (and therefore not tried to test it). But what do you do. I would just imagine it would be a call to tester.clickLink (linkPath)?! Frank On 6/8/07, Sven Schliesing <[EMAIL PROTECTED]> wrote: Hi, I'm trying to heavily rely on test driven development while build

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-11 Thread Frank Bille
Hi I haven't got experience with that error. Can you please post the code that is not working? Frank On 6/11/07, Javed <[EMAIL PROTECTED]> wrote: I need to change image according the selection made in dropdown. It is working fine Firefox but not in IE I tried it with "onchange" and "onclic

Re: [Wicket-user] Using Ajax to update my

2007-06-11 Thread Frank Bille
I guess your code doesn't work right now.. Try this markup: first name last name firstName lastName Fran

Re: [Wicket-user] Using Ajax to update my

2007-06-11 Thread Frank Bille
Ok I didn't see you double-posted: http://www.nabble.com/Ajax---update-%3Ctable%3E-tf3904552.html Frank On 6/12/07, Frank Bille <[EMAIL PROTECTED]> wrote: I guess your code doesn't work right now.. Try this markup:

Re: [Wicket-user] AjaxFormComponentUpdatingBehavior for DropDownChoice not working in IE

2007-06-14 Thread Frank Bille
>> imageUrl = imageUrl == null? "" : imageUrl; >> model.setImageUrl(imageUrl); // sets new image model >> image.add(new AttributeModifier("src",new >> PropertyModel(model,"imageUrl"))); // sets ima

Re: [Wicket-user] WicketTester class in Wicket 1.3

2007-06-14 Thread Frank Bille
What should it do? the same as?: assertRenderedPage(p.getClass); assertSame(p, tester.getLastRenderedPage()); Frank On 6/15/07, Sean Sullivan <[EMAIL PROTECTED]> wrote: I'm using the WicketTester class from Wicket 1.3 trunk. WicketTester provides these methods: public Page startPage(C

Re: [Wicket-user] Best way to set the focus on a form's TextField

2007-06-15 Thread Frank Bille
I have been playing around with it as well. Untill now I have come up with the following: http://svn.teachus.dk/browse/TeachUs/dk.teachus/trunk/teachus-frontend/src/main/java/dk/teachus/frontend/components/form/DefaultFocusBehavior.java?r=root : But I'm not entirely sure it does what I want. I w

Re: [Wicket-user] Best way to set the focus on a form's TextField

2007-06-15 Thread Frank Bille
(Link a little long so here's a shorter one: http://tinyurl.com/3d9sja) Frank On 6/15/07, Frank Bille <[EMAIL PROTECTED]> wrote: I have been playing around with it as well. Untill now I have come up with the following: http://svn.teachus.dk/browse/TeachUs/dk.teachus/trunk/teach

Re: [Wicket-user] Best way to set the focus on a form's TextField

2007-06-15 Thread Frank Bille
at as the basis for a rule on which gets the focus. Hope this helps you formulate a strategy. -Original Message- *From:* [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] Behalf Of *Frank Bille *Sent:* 15 June 2007 10:07 *To:* wicket-user@lists.sourceforge.net *Subject:* Re: [Wicket-user] Best way

Re: [Wicket-user] Copenhagen Wicket Users Group - interested?

2007-06-15 Thread Frank Bille
Was just thinking the same :) I also think we can borrow a room at Avaleo (ITU's meeting rooms). Frank On 6/15/07, Nino Saturnino Martinez Vazquez Wael <[EMAIL PROTECTED]> wrote: Hi Inspired by Al im writing this mail. I think we should be enough people to make a group, however im not certa

Re: [Wicket-user] HTML tools

2006-08-01 Thread Frank Bille
Visual Studio .NET !!On 8/2/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: jedit!On 8/1/06, Eelco Hillenius < [EMAIL PROTECTED]> wrote: Netbeans, Netbeans!EelcoOn 8/1/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: > yay, fight! i suggest eclipse wtp, also has great autocomplete in html and > css! long

Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
WicketTester (http://woogle.billen.dk/search/q/wickettester) is good for functional tests. FrankOn 8/2/06, Ittay Dror <[EMAIL PROTECTED]> wrote: Hi,What frameworks are suitable for automatic testing of wicket applications? I'm interested in functional, regression and performance tests.Is it tricky

Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
On 8/2/06, Ittay Dror <[EMAIL PROTECTED]> wrote: in performance tests, i meant running test scenarios simultaneously. this is also for discovering threading issues.Well JMeter has proven quite useful when we (@work) tested AJAX functionality in Wicket. Frank

Re: [Wicket-user] automatic testing

2006-08-02 Thread Frank Bille
And remember to use the latest version. We had problems with jmeter slaves crashing too soon (couldn't even get them to overload the server ;))On 8/2/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: Second that. I had the best experiences with JMeter. It can be a bitweird when you start out, but if

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

2006-08-03 Thread Frank Bille
It's due to invalid use of *PropertyModel. The POJO you use doesn't have a get method for the property defined.FrankOn 8/3/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote:Hello,Wicket's error message are generally full of useful details, but this one is a bit more tricky :WicketMessage: No get m

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

2006-08-03 Thread Frank Bille
or your propertyOGNL is wrong. You are welcome to share some code with the problem.FrankOn 8/3/06, Frank Bille < [EMAIL PROTECTED]> wrote:It's due to invalid use of *PropertyModel. The POJO you use doesn't have a get method for the property defined. FrankOn 8/3/06, Pierre-Yves

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

2006-08-03 Thread Frank Bille
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.techsay

Re: [Wicket-user] CTRL+click

2006-08-06 Thread Frank Bille
HeyYou can use the callbackdecorator to add the _javascript_ which you need. Something like this perhaps:component.add(new AjaxEventBehavior("onclick") {    private static final long serialVersionUID = 1L;     protected void onEvent(AjaxRequestTarget target) {    target.appendJavascript("alert(

Re: [Wicket-user] CTRL+click

2006-08-06 Thread Frank Bille
arget;/** * AJAX Behavior which returns the client side click information to the server. You get information like * is CTRL/ALT/SHIFT key pressed and x and y of the mouse position.  *  * @author Frank Bille (billen) */public abstract class ClickBehavior extends AjaxEventBehavior {    public ClickBehavior(

Re: [Wicket-user] OT: Gmail invitation? Good SVN hosts?

2006-08-07 Thread Frank Bille
On 8/7/06, Per Ejeklint <[EMAIL PROTECTED]> wrote: Fellows,I'm trying out free hosting services - need a place to hold my spiffywicket-application that I finally got started with. Want to try outGoogle Code but apparently you need Gmail. Can anyone invite me (Per Ejeklint, [EMAIL PROTECTED])?I can

Re: [Wicket-user] Problem with empty markupId

2006-08-08 Thread Frank Bille
On 8/9/06, Pierre-Yves Saumont <[EMAIL PROTECTED]> wrote: myList = DataObjectsFactory.getMyList();myListView = new MyListView("id", myList);myListView.setOutputMarkupId(true);target.addComponent(myListView);It doesn't look like you add/replace that myListView to a parent. OutputMarkupId can't be ca

Re: [Wicket-user] no activity in wicket user list?

2006-08-09 Thread Frank Bille
On 8/9/06, Jaime De La Jara <[EMAIL PROTECTED]> wrote: Hi, just wondering what has happened to the mailing list?, the last post is from July 25 and there's been no activity since then.You mean on SourceForge? They are having problems with that. Use nabble instead: http://www.nabble.com/Wicket---Use

Re: [Wicket-user] Woogle and Woogle

2006-08-14 Thread Frank Bille
Hehe, yeah I'm not very original. Perhaps we should vote for a different name? Any good surgestions?- FrankOn 8/14/06, Alexandre Bairos < [EMAIL PROTECTED]> wrote: http://www.gujian.nI'm not saying et/woogle/ http://woogle.billen.dk/search:) ---

Re: [Wicket-user] AbstractRequestTargetUrlCodingStrategy implementation

2006-08-14 Thread Frank Bille
Hey KarlI can show you one of my first attempts to use IRequestTargetUrlCodingStrategy. It's for a never-published weblog I wrote a while ago. It maps http://localhost/weblog/article/some_article_title_in_url_formtonew BlogItemPage(BlogItem blogItem)which means I do the resolving of the BlogItem o

Re: [Wicket-user] wicket tags

2006-08-15 Thread Frank Bille
You can disable all those tags by addingconfigure(DEPLOYMENT)to your Application#init()- FrankOn 8/15/06, Alex Objelean < [EMAIL PROTECTED]> wrote:I was wondering if wouldn't it be better if the rendered page would not contain wicket tags and wicket:id attribute?The root problem is that validating

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Frank Bille
Hmm well.. I'm not expecting Woogle to be popular, but maybe you're right anyway. I lige "Woogle", but I'm no fanatic either.So how about:"Wicket Resources""Search.wicket ""Tired of finding POOP?" ;)"The-Mean-Search-Machine-For-Finding-The-Coolest-Resources-About-The-Hottest-Tech-Evah!" (or TMSMFFT

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Frank Bille
wrote: http://www.wickle.com/wiki/index.php/Main_Page:) The a project/product with this name. I like Wicketrack.Other ideas: Wicketrail WicketeerWookie :)On 8/15/06, Johan Compagner < [EMAIL PROTECTED]> wrote: WicklejohanOn 8/15/06, Frank Bille < [EMAIL PROTECTED]> wrote: Hmm well.. I'

Re: [Wicket-user] Woogle and Woogle

2006-08-15 Thread Frank Bille
BTW thanx for all the name surgestions. It's nice to have if Woogle gets so popular that it draws the attention of Google.- FrankOn 8/15/06, Frank Bille <[EMAIL PROTECTED]> wrote: After long and intensive discussion on IRC I've reached the conclusion that Woogle is just perfect.

Re: [Wicket-user] AjaxLink setresponse

2006-08-19 Thread Frank Bille
With only 2x+1? Are you crazy?!?  I need to have something like 4½x+1 and max. 1x0 and no -1 (or something)- FrankOn 8/18/06, Igor Vaynberg <[EMAIL PROTECTED]> wrote: no, wicket_1_2_1 branch was a mistake - it is supposed to be a label that marks the code that went into 1.2.1 release not a branch

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

2006-08-21 Thread Frank Bille
Can you paste the entire markup? - FrankOn 8/21/06, Dipu <[EMAIL PROTECTED] > wrote: Hi Matej,   Thanks very much, it did help.   I took the form declaratin out of the table and it worked.   If i wrap the form declaration inside a cell, i get the follwoing parser error. ' (line 41, column 2

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

2006-08-22 Thread Frank Bille
Bookmarkable pages has a PageParameters constructor. From these parameters can you get the form values. You would now that it would be a submit because the pageparameters contains the expected values.- Frank On 8/22/06, Nili Adoram <[EMAIL PROTECTED]> wrote: But how would the bookmarkable page woul

Re: [Wicket-user] Wicket 2.0, when?

2006-08-24 Thread Frank Bille
On 8/25/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: BUT: where can I get wicket 2.0? The official link to SVN on thesourceforge page points to http://svn.sourceforge.net/wicket. And e.g.in trunk, the project.xml file still has " 1.2-SNAPSHOT" as the curretnversion.Oh, you're right but that projec

Re: [Wicket-user] Re : Session.get() behaviour

2006-08-25 Thread Frank Bille
I guess it would be more like a Session.exists() :)+1 for that. it's backportable.FrankOn 8/26/06, Jaime De La Jara < [EMAIL PROTECTED]> wrote:I think Igor proposal, session.exists(), is correct and it could be added without any impact.Jaime.>i think thats better then an npe, didnt even know we we

Re: [Wicket-user] Wicket 2.0 build

2006-08-28 Thread Frank Bille
There is a maven snapshot repository here:http://maven.sateh.com/wicket/wicket/FrankOn 8/28/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: Dear wicket developers,now that I have seen some Wicket 1.2.2 components (e.g. modal diaglosinside of browser) I would really like to try Wicket 2.0.Did someone

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Frank Bille
amenOn 8/30/06, Eelco Hillenius <[EMAIL PROTECTED]> wrote: On 8/30/06, Ryan Sonnek <[EMAIL PROTECTED]> wrote:> "quickstrat"???  =)Fastest way to Fender heaven.- Using Tomcat but need to do more? Need to support web services, se

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Frank Bille
Well it doesn't really matter, because your configure is the one that counts. It's only because Application sets a default configure (DEVELOPMENT) before your init is called. Frank On 9/1/06, Korbinian Bachl <[EMAIL PROTECTED]> wrote: it has to be in the init() function of the Application Class - t

Re: [Wicket-user] Wicket 2.0: You are in DEVELOPMENT mode

2006-09-01 Thread Frank Bille
What I meant was that it's only a log entry. It's written there because the configuration is tried to be set BEFORE your init is called, based on the params in the web.xml. The configuration is set to DEPLOYMENT if you choose to in init(). Refer to Jurgens answer. I think that it's better to conf

Re: [Wicket-user] latest (1.2.2) Javadocs ?

2006-09-02 Thread Frank Bille
Javadoc for extensions can be found here:http://wicketframework.org/wicket-extensions/apidocs/index.htmlI'm not 100% sure but the javadoc on: http://wicketframework.org/apidocs/index.html...should be 1.2.2 even though they say SNAPSHOT.(Martijn: isn't that so?)Frank On 9/2/06, Igor Vaynberg <[EMAIL

Re: [Wicket-user] Woogle is down

2006-09-05 Thread Frank Bille
Sorry about that. Woogle runs off my home server, which has a mirrored raid of SATA discs. All should be fine, but for some reason one of the discs keeps falling out of the raid (HW) and the raid stops working.. grr... But it's up again.FrankOn 9/5/06, David Leangen <[EMAIL PROTECTED]> wrote: Just

Re: [Wicket-user] Woogle is down

2006-09-05 Thread Frank Bille
I could manage to get the index-db updated in the Woogle app..FrankOn 9/5/06, David Leangen <[EMAIL PROTECTED]> wrote: Ok, thanks!If you need a place to host, you could use my server.Cheers,DaveOn Tue, 2006-09-05 at 10:03 +0200, Frank Bille wrote:> Sorry about that. Woogle runs off my

Re: [Wicket-user] Woogle is down

2006-09-05 Thread Frank Bille
Cheers,DaveOn Tue, 2006-09-05 at 10:03 +0200, Frank Bille wrote:> Sorry about that. Woogle runs off my home server, which has a mirrored > raid of SATA discs. All should be fine, but for some reason one of the> discs keeps falling out of the raid (HW) and the raid stops working..> grr...

Re: [Wicket-user] Woogle is down

2006-09-05 Thread Frank Bille
ould have root access yourself.This could be my (small) contribution to Wicket. About how many hits do you get per day?Cheers,DavidOn Tue, 2006-09-05 at 10:32 +0200, Frank Bille wrote:> Very interesting. Do you have a possibility to setup a cron job? > (that's how the index is updated) It's a

Re: [Wicket-user] Woogle is down

2006-09-06 Thread Frank Bille
will make it easier for me to> > free> > up resources. If the number of hits grows, we can upgrade as we go> > along. > >> > I'll see what I can dig up and get back to you asap.> >> >> > Cheers,> > Dave> >> >> >> > On

Re: [Wicket-user] Abstraction of Google Maps API?

2006-09-07 Thread Frank Bille
There is something in Wicket-Stuff:http://svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-contrib-gmap/ http://svn.sourceforge.net/viewvc/wicket-stuff/trunk/wicket-contrib-gmap-examples/On 9/7/06, Erik van Oosten < [EMAIL PROTECTED]> wrote:You might want to take a look at jMaki. It provides 'c

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

2006-09-07 Thread Frank Bille
HeyPlease update the FAQ if you have a spare minute:http://www.wicket-wiki.org.uk/wiki/index.php/FAQs#Which_browsers_has_been_tested_with_Wicket_AJAX FrankOn 9/7/06, Tomer Mevorach <[EMAIL PROTECTED]> wrote: to be honest, we discovered it by mistake, as we have some test machineswith fedora core 4

Re: [Wicket-user] Is it possible to surround a tag with extra tags in onComponentTag?

2006-09-07 Thread Frank Bille
Just out of curiosity: Why don't create a custom component which extends Panel and then have a have a Link with an Image inside it. Then you don't have to mess with onRender and stuff.IMO it's more clean to do it in that way if you don't have a specific need for the component to have Image as paren

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-08 Thread Frank Bille
What I do to hot deploy in Eclipse is setting configure to DEVELOPMENT in init:...class MyApplication extends WebApplication {...    init() {...    configure(DEVELOPMENT);...    } ...}This gives you hot update of resources (HTML). For java code run the jetty launcher as debug. Debug gives you h

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-09 Thread Frank Bille
deploy it is in deployment. (no files touched) and in the developer you still have development mode. johanOn 9/8/06, Frank Bille < [EMAIL PROTECTED]> wrote: What I do to hot deploy in Eclipse is setting configure to DEVELOPMENT in init:...class MyApplication extends WebApplication {...    init()

Re: [Wicket-user] AJAX degrade and Hot deployment scanning with jetty

2006-09-09 Thread Frank Bille
-Dwicket.configuration=DEVELOPMENTThen by default if you deploy it is in deployment. (no files touched) and in the developer you still have development mode. johanOn 9/8/06, Frank Bille < [EMAIL PROTECTED]> wrote: What I do to hot deploy in Eclipse is setting configure to DEVELOPMENT in init:..

Re: [Wicket-user] Wicket-user Digest, Vol 4, Issue 72

2006-09-10 Thread Frank Bille
HiI'm not sure I understand which examples you are talking about. Which of the AJAX examples doesn't work and what happens?FrankOn 9/10/06, ketan gote <[EMAIL PROTECTED]> wrote: hello friends there r some of the new example of ajax on the wicket site but this are no mean of useful as they doen't

Re: [Wicket-user] CSS problems with DataTable in an AjaxTabbedPanel

2006-09-10 Thread Frank Bille
Hehe I could try. I just have to read about a little bit. Haven't really looked into it. Give me until tuesday thenFrankOn 9/10/06, Matej Knopp <[EMAIL PROTECTED]> wrote:Heh, I'm not even sure, but I guess not. I'm way too busy lately :( Maybe frankbille could have a look at that?-MatejIgor Vaynbe

Re: [Wicket-user] HyperLink

2006-09-13 Thread Frank Bille
Do you mean how to disable the link so it's not a link anymore?Link.setEnabled(false).The something is not valid html as far as I remember.Frank On 9/13/06, Ayodeji Aladejebi <[EMAIL PROTECTED]> wrote: How du I make a Link Component (an hyperlink) render as Link Name without the href att -

Re: [Wicket-user] AJAX in Firefox 1.0

2006-09-13 Thread Frank Bille
so if it works please edit the FAQ to say that it do. :)FrankOn 9/13/06, Martijn Dashorst <[EMAIL PROTECTED] > wrote:We only tested them in firefox 1.5+See: http://www.wicket-wiki.org.uk/wiki/index.php/FAQs#Which_browsers_has_been_tested_with_Wicket_AJAXMartijnOn 9/13/06, Ars <[EMAIL PROTECTED]> w

Re: [Wicket-user] How to detect page switch

2006-09-13 Thread Frank Bille
On 9/14/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: http://jroller.com/page/dashorst?entry=wicket_goodie_hibernate_versioned_form(BTW Frank: woogle didn't find this article!) Hmm, I'm not sure how to fetch that with woogle. How would a normal user find the article? I can't find any "archive", "

Re: [Wicket-user] Wicket 2.0: Form within a modal Window

2006-09-16 Thread Frank Bille
Just as a sidenote: I use Panels with forms as the content of the Moda Windows and they work perfect (especially with the fix, thx Matej). The trick is to always use Ajax(Submit)Link's for everything. FrankOn 9/16/06, Matej Knopp <[EMAIL PROTECTED]> wrote: The fix of disabling tabs for elements in

Re: [Wicket-user] Wicket 2.0: Form within a modal Window

2006-09-16 Thread Frank Bille
On 9/16/06, Frank Bille <[EMAIL PROTECTED]> wrote: The trick is to always use Ajax(Submit)Link's for everything.Which of cause is not entirely true. The trick is to use AJAX to submit the form (as Matej stated). I use an AjaxFormSubmitBehavior attached to the forms onsubmit so I can pre

Re: [Wicket-user] Wicket 2, modal window, ListChoice, auto completion

2006-09-17 Thread Frank Bille
On 9/17/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: - the ListChoice is not displayed tag had a problem in Model Dialogs in IE. But it should have been solved by now. Try to do a svn update to get the latest model window code.Frank

Re: [Wicket-user] SUSPECT: RE: Pro Wicket: Great first book onwicket

2006-09-17 Thread Frank Bille
On 9/17/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote: At my company I'm trying to convince ourdesigner team to do a new version of the website, but they arereluctant to donate some time.Damn designers. :) Think they own the world and stuff. Just tell them that if they spend that hour on making a

Re: [Wicket-user] How do I prevent a to change style

2006-09-19 Thread Frank Bille
On 9/19/06, Stefan Arentz <[EMAIL PROTECTED]> wrote: On 9/19/06, Martijn Dashorst <[EMAIL PROTECTED]> wrote:> wicket:link is very basic. You won't be able to change much, if> anything at all. It was just meant as a quick way of building a > working menu. If you want more, then you'll have to use> B

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
On 9/21/06, Erik van Oosten <[EMAIL PROTECTED]> wrote: If this gets accepted, may I humbly suggest to replace  value != null && !"".equals(value)with  value != null && value.length() != 0The latter performs considerably faster (though it is of course still a micro optimization).You are welcome to s

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
Sry I was talking to Erik that if he's got a better way to do such checks in Wicket. Since I haven't been following this discussion I can't really say if what your doing is something that can be used :) Frank On 9/21/06, Manuel Barzi <[EMAIL PROTECTED]> wrote: Hi, Frank,> You are welcome to submit

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
de here updated...On 9/21/06, Frank Bille <[EMAIL PROTECTED]> wrote:> Sry I was talking to Erik that if he's got a better way to do such checks in > Wicket.>> Since I haven't been following this discussion I can't really say if what> your doing is something that

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
and I stop talking to people when my head is not clear... :SFrankOn 9/21/06, Erik van Oosten <[EMAIL PROTECTED] > wrote:LOLI'll refrain from sending trivial changes to the wicket list in the future :) Erik.--Erik van Oostenhttp://www.day-to-day-stuff.blogspot.com/---

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
If you could do the actual change and then submit a patch for that change it will be even faster for us to handle it.FrankOn 9/21/06, Manuel Barzi <[EMAIL PROTECTED]> wrote:Submitted and CLOSED. https://sourceforge.net/tracker/index.php?func=detail&aid=1562907&group_id=119783&atid=684975 -

Re: [Wicket-user] INPUT (+ value, + onClick) as Button?

2006-09-21 Thread Frank Bille
And submit a patch just means attaching the patch to that bug report you have opened.FrankOn 9/21/06, Frank Bille < [EMAIL PROTECTED]> wrote:If you could do the actual change and then submit a patch for that change it will be even faster for us to handle it. FrankOn 9/21/06, Manuel Barzi &

Re: [Wicket-user] RunAs java/debug

2006-09-26 Thread Frank Bille
On 9/26/06, James McLaughlin <[EMAIL PROTECTED]> wrote: Well, its more a kingdom of pain, which i guess i should have mentioned upfront. Never doubted you would provide an answer though. But honestly, I am running 3.2 and the Terminate/Terminate and Relaunch option just isn't there. Curses! It is i

Re: [Wicket-user] Ajax submit of ListView

2006-10-05 Thread Frank Bille
Hey ChuckOn 10/2/06, ChuckDeal <[EMAIL PROTECTED]> wrote: I have the Ajax submit for the radio buttons working, but my problem is withstoring the value in the associated date field.  When you say this what do you mean by working? You are using the AjaxFormSubmitBehavior, right?  When I use the "tra

Re: [Wicket-user] [tutorial] Wicket + Spring integration - revisited

2006-10-05 Thread Frank Bille
Hey LeszekLooks good. If you have time for it couldn't you turn this into a wiki? In that way it's easier for users to find this.http://www.wicket-wiki.org.uk/wiki FrankOn 10/3/06, Leszek Gawron <[EMAIL PROTECTED]> wrote: Hello,I just wanted to share another way of injecting spring services intowic

Re: [Wicket-user] getObjectAsString always null in 1.2.2

2006-10-05 Thread Frank Bille
Yes please try to share some code with shows where the problem exatly is.FrankOn 10/2/06, kurt heston < [EMAIL PROTECTED]> wrote:Am I being too vague here to get an answer?  Do I need to post my code? kurt heston wrote:> All I did was switch from wicket-1.2-rc3.jar to wicket-1.2.2.jar and my> SignI

[Wicket-user] Give a dynamic generated image a "pretty" name

2006-10-05 Thread Frank Bille
Hey allI have an Image with a custom RenderedDynamicImageResource on it. This works fine, but my problem is that *sometimes* (haven't yet been able to determine the exact cause) FireFox displays the wrong image (displays one of the other loaded images on that page). The situation occours only if I

Re: [Wicket-user] Give a dynamic generated image a "pretty" name

2006-10-07 Thread Frank Bille
d to the path as > /image/number1>> play with it if that works and see if you need to change anything (request> encoding/decoding)>> johan>>>>  On 10/4/06, Frank Bille < [EMAIL PROTECTED]> wrote:> >> > Hey all> >> > I have an Image with a cu

Re: [Wicket-user] NiceURL and PagingNavigator

2006-10-11 Thread Frank Bille
Try taking a look at Woogle and how the url looks when changing page in the result.I have done this with Bookmarkable pages and did the pagination myself. http://woogle.billen.dk/ (At that website there is also a link to the svn repository)FrankOn 10/11/06, Korbinian Bachl < [EMAIL PROTECTED]> wrot

Re: [Wicket-user] Move to Apache: Namespace?

2006-10-16 Thread Frank Bille
I normally use xmlns:wicket="http://www.wicketframework.org" and IMHO it will stay the same.FrankOn 10/16/06, Stefan Lindner <[EMAIL PROTECTED]> wrote: This question is currently not so very imnportant but, for XHTML users, will thexmlns:wicket=http://wicket.sourceforge.net/wicket namespace change

Re: [Wicket-user] How to reload page from within ajax call

2006-10-16 Thread Frank Bille
We did add support for it in 1.2.2. Is that the version you use, De Soca?FrankOn 10/16/06, Igor Vaynberg < [EMAIL PROTECTED]> wrote:what version of wicket are you using? i thought we added support for setResponsePage() from an ajax call in 1.2.2, but maybe im wrong and it will be in 1.2.3-IgorOn 1

Re: [Wicket-user] How to reload page from within ajax call

2006-10-17 Thread Frank Bille
Hmm, which browser(s) are you using? You could also take a look at this site to see the browsers that *has* been tested with our AJAX implementation: http://www.wicket-wiki.org.uk/wiki/index.php/FAQs#Which_browsers_have_been_tested_with_Wicket_AJAXFrankOn 10/17/06, De Soca < [EMAIL PROTECTED]> wrot

Re: [Wicket-user] Netscape 8.1.2 problems

2006-10-17 Thread Frank Bille
I can see that the Gecko version used is 1.7.5 which AFAIR corresponds to FireFox 1.0 which I don't think works with our AJAX at the moment. Frank On 10/17/06, Matej Knopp <[EMAIL PROTECTED]> wrote: > Strange. It seems that getResponseHeader throws an exception in netscape > if the requested head

Re: [Wicket-user] How to test validators?

2006-10-17 Thread Frank Bille
Just of the top of my head I have two surgestions. One is to Do the full association of the validator to a field which is then associated with a form and then, using the FormTester, submit the form and check the messages. A more easy sollution is to, in your test, subclass your validator and overri

Re: [Wicket-user] Netscape 8.1.2 problems

2006-10-17 Thread Frank Bille
t;[EMAIL PROTECTED]> wrote: > I don't know if ff 1.0 works, but Netscape 8.1.2 does, after I fixed it :) > > Frank Bille wrote: > > I can see that the Gecko version used is 1.7.5 which AFAIR corresponds > > to FireFox 1.0 which I don't think works with our AJAX at

Re: [Wicket-user] How to test validators?

2006-10-17 Thread Frank Bille
On 10/17/06, Erik van Oosten <[EMAIL PROTECTED]> wrote: > A more easy sollution is to, in your test, subclass your validator and> override error() in that and check if that is invoked correctly.>This is not possible as all the error methods are final. Hmm are you sure of that? http://wicket.source

Re: [Wicket-user] Using AjaxEventBehavior On A Page Component

2006-10-18 Thread Frank Bille
You need to attach the event to a tag in the markup. Since the Page component is not directly attached to any tag then you can't use that. Instead use: public class Index extends WebPage { public Index() { super(); final Label testLabel = new Label(this, "message", "Hello

Re: [Wicket-user] Using AjaxEventBehavior On A Page Component

2006-10-18 Thread Frank Bille
getBodyContainer().getBodyContainer() returns the WebMarkupContainer which corresponds with the tag. (Though I don't know how good the support is for having javascript events on the tag in the different browsers) Frank On 10/19/06, Frank Bille <[EMAIL PROTECTED]> wrote: > You

  1   2   3   >