[Wicket-user] problem with links

2007-03-03 Thread Leon Pennings
Hi all, first post here. First off, I really enjoy working with wicket. Brings back memories from the days when I was still coding swing stuff. Ok I got a problem with using PageLinks. Atleast, thats what I think it is. When I develop on jboss at localhost:8080 nothing seems to be wrong. But

[Wicket-user] filterPath mandatory

2007-03-03 Thread Wouter de Vaal
Hi, I am using a 2.0 snapshot (updated yesterday) and I found the following: My web.xml has the following filter settings filter filter-namewicketFilter/filter-name filter-classwicket.protocol.http.WicketFilter/filter-class init-param

Re: [Wicket-user] filterPath mandatory

2007-03-03 Thread Wouter de Vaal
Oh excuse me, it seems this has come up in februari already. Wouter On 3/3/07, Wouter de Vaal [EMAIL PROTECTED] wrote: Hi, I am using a 2.0 snapshot (updated yesterday) and I found the following: My web.xml has the following filter settings filter

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 need

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

2007-03-03 Thread Martijn Dashorst
On 3/3/07, Frank Bille [EMAIL PROTECTED] wrote: 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?) From his website: -- The licence for this code is simple: use it how

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

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

2007-03-03 Thread Igor Vaynberg
look inside the javascript: * Licence: * Use this however/wherever you like, just don't blame me if it breaks anything. that IS the license. the attribution is completely optional. it is there in devel mode, but will be gone in prod mode because the js will be stripped/compressed. i already

[Wicket-user] How to submit a form using a LINK and NO JAVASCRIPT

2007-03-03 Thread Shams Mahmood
Hi, I an caught up in a problem where I cannot use javascript, but i need a Link to submit my Form. Basically my problem is I have pagination in my page where the user can select items using checkboxes in a check group. When he uses the pagination links i am required to update and hold the

Re: [Wicket-user] How to submit a form using a LINK and NO JAVASCRIPT

2007-03-03 Thread Igor Vaynberg
with no javascript a link cannot submit a form, only input type=submit/ can, so use that. so you need pagination that uses input type=submit elements -igor On 3/3/07, Shams Mahmood [EMAIL PROTECTED] wrote: Hi, I an caught up in a problem where I cannot use javascript, but i need a Link to