Re: Problem in retrieving the dynamic text field values

2007-07-24 Thread anuradha.g
Hi Igor, Thanq very much for your suggestion, it solved my problem, but a small correction I used String[] lastnames = getRequest.getParameters("lastnames"); Thanq Anuradha igor.vaynberg wrote: > > since you are adding those fields in javascript andnot in wicket then: > 1) remove wicket:id

Re: New Extensible Autocomplete - Attaching a new JIRA to have a code review

2007-07-24 Thread Timo Rantalaiho
On Tue, 24 Jul 2007, Francisco Diaz Trepat - gmail wrote: > I was supposed to open a JIRA but as I've never done this, I wanted to get > some instructions on how to do it. If you don't have an account to Apache Jira yet, create it here https://issues.apache.org/jira/secure/Signup!default.jspa

Re: Wicket site and javadocs

2007-07-24 Thread Martijn Dashorst
On 7/25/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: On 7/24/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: > Therefore, the javadocs > for 1.2 *most likely* don't belong on the Apache site. but we could put them on sf.net and link to there from wicket.apache.org? Heh, good ol' web 1.0 tech

Re: Wicket site and javadocs

2007-07-24 Thread Igor Vaynberg
On 7/24/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: Therefore, the javadocs for 1.2 *most likely* don't belong on the Apache site. but we could put them on sf.net and link to there from wicket.apache.org? -igor Martijn On 7/25/07, Gavin <[EMAIL PROTECTED]> wrote: > > Hello, > > Any

Re: Wicket site and javadocs

2007-07-24 Thread Martijn Dashorst
We are aware of the multiple site issue and working on it. There are only so many hours in a day. As for the 1.2 javadocs: we need to see if that is feasable: the code is not from Apache, nor hosted. For instance we will not provide 1.2 releases using the Apache mirrors. These will remain and con

Wicket site and javadocs

2007-07-24 Thread Gavin
Hello, Any chance of getting the 1.2 and 1.3 java docs on the new wicket site (http://wicket.apache.org/). Also, it would be a good idea to put a notice on the other sites or use a redirect as it is very confusing which is the "current" wicket home page (there are now 3 to choose from). Cheers

Re: New Extensible Autocomplete - Attaching a new JIRA to have a code review

2007-07-24 Thread Igor Vaynberg
where is the code? -igor On 7/24/07, Francisco Diaz Trepat - gmail <[EMAIL PROTECTED]> wrote: Hi, igor, or someone: I took the liberty in writing an extensible autocomplete behavior based on the AutocompleteTextField by Janne (jannehietamaki). I was supposed to open a JIRA but as I've nev

Re: When beta3 will come out?

2007-07-24 Thread Martijn Dashorst
and for the casual reader: [1] means: [1] http://issues.apache.org/jira/secure/IssueNavigator.jspa?reset=true&mode=hide&sorter/order=DESC&sorter/field=priority&resolution=-1&pid=12310561&fixfor=12312533 On 7/24/07, Martijn Dashorst <[EMAIL PROTECTED]> wrote: I monitor the issue list in JIRA an

Re: When beta3 will come out?

2007-07-24 Thread Martijn Dashorst
I monitor the issue list in JIRA and there are still about 27 issues unresolved for beta3 [1]. I could build a release, but I want to spend our time effectively. The book doesn't get written on its own, nor does money grow on the tree in my backyard! (GOD I wish that were true on both accounts!)

Re: New Extensible Autocomplete - Attaching a new JIRA to have a code review

2007-07-24 Thread Francisco Diaz Trepat - gmail
Yes, wicket is great. I cannot agree with the scriptaculos. Both wicket-extenssions and scriptaculos don't support any html. They both support putting with inside them any html like images and divs spans etc. It also supports puting or span div or span span etc on wicket if you change a little

When beta3 will come out?

2007-07-24 Thread Bruno Borges
So, when will we see beta3 out? []'s! -- Bruno Borges Summa Technologies Inc. www.summa-tech.com (11) 8565-7739 (11) 3055-2060 (48) 8404-1300

Re: New Extensible Autocomplete - Attaching a new JIRA to have a code review

2007-07-24 Thread Ryan Sonnek
Nice work. It's pretty amazing how easy it is to create these "widgets" with wicket. One comment i have is that the scriptaculous autocomplete component supports "custom layouts" where you can display any any html for each autocomplete result. It also supports the concept of a "key/value". you

New Extensible Autocomplete - Attaching a new JIRA to have a code review

2007-07-24 Thread Francisco Diaz Trepat - gmail
Hi, igor, or someone: I took the liberty in writing an extensible autocomplete behavior based on the AutocompleteTextField by Janne (jannehietamaki). I was supposed to open a JIRA but as I've never done this, I wanted to get some instructions on how to do it. For those not following. The idea

Re: Problem in retrieving the dynamic text field values

2007-07-24 Thread Igor Vaynberg
since you are adding those fields in javascript andnot in wicket then: 1) remove wicket:id attribute from the textfield 2) in form.onsubmit do String[] lastnames=getRequest().getParameters().get("lastname"); thats it -igor On 7/24/07, anuradha.g <[EMAIL PROTECTED]> wrote: Hi, I'm a newbie in

Problem in retrieving the dynamic text field values

2007-07-24 Thread anuradha.g
Hi, I'm a newbie in wicket. Can any one please help me in solving my problem In HTML page, I'm adding wicket textfields to the table dynamically using java script (on every click of ' 'Add Row' button, a new row of wicket text fields is added to the table dynamiccaly) . I'm having trouble in re