[Wicket-user] AutoCompleteTextField busy indicators

2007-05-24 Thread Marc Stock

I would like to add a busy indicator that functions as the user types keys on
the keyboard for my AutoCompleteTextField rather then say at the end when
they change focus to a different component.  The reason is that a query is
performed at each key press.  

I started off implementing this the way it's described in ProWicket.  The
problem is that in the example you register a behavior (which in my case
will listen for 'onkeypress' events) that will call onUpdate() for each
event that occurs, however, at that point I do not know how long to show the
busy indicator because that's not where I'm doing my query.  The query is
done in the getChoices method of the AutoCompleteTextField.  How can I tie
these two together without resorting to using semaphores?

I'm using Wicket 1.2.6.  Thanks,

Marc
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField---busy-indicators-tf3811990.html#a10790085
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField

2007-05-15 Thread Marc Stock

Hello, I'm a wicket newbie so bear with me.  

I'm trying to use the AutoCompleteTextField and I have three questions:

1) The auto complete feature appears to work well in Firefox but does not
work at all in IE 6.  Is there something special I need to do to get it
working with IE 6?

2) On my page, I have two autocomplete fields.  I need the second one to
populate its list based on what they selected in the first one, however,
when I inspect the value in the getChoices() method, it hasn't been updated
yet.  Is there a way to get the model updated without doing a submit?  If
so, how?

3) I have a custom type I use to populate the autocomplete fields.  It has
an id and description.  I override toString() it it all displays nicely in
the list that appears to the user.  However, it appears that the custom type
I created gets lost and wicket only keeps the string values.  Is there a way
to get to the custom type I inserted (and the user selected) or do I have to
write code to map the descriptive text back to an ID?

Thanks for the help.  Sorry if these are very easy questions but I'm still
new to wicket and trying to figure it out from reading example codes.

-- Marc
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-tf3760833.html#a10630272
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2007-05-15 Thread Erik van Oosten

Hi Marc,

1: IE 6 should work (I have autocompletion in production where most users
have IE6). If it does not work for you, it must be a regression. If you are
absolutely sure, you can file an issue.

2: Use the behavior attached to
https://issues.apache.org/jira/browse/WICKET-176.

3: I found the javadoc of the autocomplete fields quite informative. You may
find your answer to question 3 there.

Regards,
   Erik. 


Marc Stock wrote:
 
 Hello, I'm a wicket newbie so bear with me.  
 
 I'm trying to use the AutoCompleteTextField and I have three questions:
 
 1) The auto complete feature appears to work well in Firefox but does not
 work at all in IE 6.  Is there something special I need to do to get it
 working with IE 6?
 
 2) On my page, I have two autocomplete fields.  I need the second one to
 populate its list based on what they selected in the first one, however,
 when I inspect the value in the getChoices() method, it hasn't been
 updated yet.  Is there a way to get the model updated without doing a
 submit?  If so, how?
 
 3) I have a custom type I use to populate the autocomplete fields.  It has
 an id and description.  I override toString() it it all displays nicely in
 the list that appears to the user.  However, it appears that the custom
 type I created gets lost and wicket only keeps the string values.  Is
 there a way to get to the custom type I inserted (and the user selected)
 or do I have to write code to map the descriptive text back to an ID?
 
 Thanks for the help.  Sorry if these are very easy questions but I'm still
 new to wicket and trying to figure it out from reading example codes.
 
 -- Marc
 

-- 
Erik van Oosten
http://2007.rubyenrails.nl/
http://day-to-day-stuff.blogspot.com/ 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-tf3760833.html#a10631615
Sent from the Wicket - User mailing list archive at Nabble.com.


-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread Igor Vaynberg

hmm, you might be right. i dont think we url encode the input. please add an
rfe.

-igor


On 3/26/07, Michael Day [EMAIL PROTECTED] wrote:


Hi,

I think I found a bug in AutoCompleteTextField.  When I enter
anything with a % symbol, I get a null string passed to getChoices
(String).  I assume this has something to do with URL encoding (or
lack thereof), but I haven't looked any deeper.

I'm using Wicket 1.2.5.

Michael

-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread David Leangen

Well... that would almost explain the Japanese problem I'm having... but
why only one browser on 1 platform?

Weird...



On Mon, 2007-03-26 at 18:09 -0700, Igor Vaynberg wrote:
 hmm, you might be right. i dont think we url encode the input. please
 add an rfe.
 
 -igor
 
 
 On 3/26/07, Michael Day [EMAIL PROTECTED] wrote:
 Hi,
 
 I think I found a bug in AutoCompleteTextField.  When I enter 
 anything with a % symbol, I get a null string passed to
 getChoices
 (String).  I assume this has something to do with URL encoding
 (or
 lack thereof), but I haven't looked any deeper.
 
 I'm using Wicket 1.2.5.
 
 Michael
 
 
 -
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 -
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list 
 Wicket-user@lists.sourceforge.net 
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField bug?

2007-03-26 Thread Igor Vaynberg

url encoding was only not done for internet explorer.

-igor


On 3/26/07, David Leangen [EMAIL PROTECTED] wrote:



Well... that would almost explain the Japanese problem I'm having... but
why only one browser on 1 platform?

Weird...



On Mon, 2007-03-26 at 18:09 -0700, Igor Vaynberg wrote:
 hmm, you might be right. i dont think we url encode the input. please
 add an rfe.

 -igor


 On 3/26/07, Michael Day [EMAIL PROTECTED] wrote:
 Hi,

 I think I found a bug in AutoCompleteTextField.  When I enter
 anything with a % symbol, I get a null string passed to
 getChoices
 (String).  I assume this has something to do with URL encoding
 (or
 lack thereof), but I haven't looked any deeper.

 I'm using Wicket 1.2.5.

 Michael


-
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 ___ Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField issue (wicket 1.2.3)

2007-02-21 Thread Paolo Di Tommaso

The AutoCompleteTextField does not invoke the functions registered by
Wicket.Ajax.registerPostCallHandler() after the ajax request has been
completed.

Is someone else experiencing the same problem?


Thank you, Paolo
-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField and special characters -solution

2007-02-15 Thread Nino Wael
A really low guess would be that the web container does not handle the url 
encoding but it still manages to work some places because of some browser 
encoding.

 

We also saw the problem you had, if user pressed the back button of the 
browser(IE6 only). Later we discovered that IE 6 does not cache the page 
encoding (or caches the wrong one) and defaults to os codepage when back are 
pressed.  Fixing this was done by setting server encoding to the same as the 
locale we expect the users to have (danish), a real crappy solution but it 
works.

 

Regards Nino

 



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Flemming Boller
Sent: 14. februar 2007 22:07
To: wicket-user@lists.sourceforge.net
Subject: [Wicket-user] AutoCompleteTextField and special characters -solution

 

Hi

I just wanted to share a little trick with you guys who might also be 
struggling with this.

I have deployed an application on my linux box. Danish characters (æøå) works 
fine, no problem.

Then we add AutoCompleteTextField to make search more nice on one page. And 
here comes the problem. 

The autocomplete will not work with æøå, but if I used %F8 instead og ø, it 
worked.

After some hair-pulling I found  (thanx to woogle.billen.dk)

http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html

which did the job.

If somebody can explain why it do work, please do..because æøå works in all 
other input fields.


Regards
Flemming




-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-15 Thread Matej Knopp
My guess would be that AjaxCompleteTextField doesn't use POST to send 
the entered string to server, it uses get instead. Which means that the 
string is part of URL.

-Matej

Flemming Boller wrote:
 Hi
 
 I just wanted to share a little trick with you guys who might also be 
 struggling with this.
 
 I have deployed an application on my linux box. Danish characters (æøå) 
 works fine, no problem.
 
 Then we add AutoCompleteTextField to make search more nice on one page. 
 And here comes the problem.
 
 The autocomplete will not work with æøå, but if I used %F8 instead og ø, 
 it worked.
 
 After some hair-pulling I found  (thanx to woogle.billen.dk 
 http://woogle.billen.dk)
 
 http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html
 
 which did the job.
 
 If somebody can explain why it do work, please do..because æøå works in 
 all other input fields.
 
 
 Regards
 Flemming
 
 
 
 
 
 
 -
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
 
 
 
 
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-15 Thread Flemming Boller

You are right Matej.

Also the in javascript I can see that the url encoding only takes place when
NOT using MSIE..

I have no idea why, but I will try and see if I can somehow change the
javascript so autocomplete worx
wihout changing tomcat server.xml.


/Flemming

On 2/15/07, Matej Knopp [EMAIL PROTECTED] wrote:


My guess would be that AjaxCompleteTextField doesn't use POST to send
the entered string to server, it uses get instead. Which means that the
string is part of URL.

-Matej

Flemming Boller wrote:
 Hi

 I just wanted to share a little trick with you guys who might also be
 struggling with this.

 I have deployed an application on my linux box. Danish characters (æøå)
 works fine, no problem.

 Then we add AutoCompleteTextField to make search more nice on one page.
 And here comes the problem.

 The autocomplete will not work with æøå, but if I used %F8 instead og ø,
 it worked.

 After some hair-pulling I found  (thanx to woogle.billen.dk
 http://woogle.billen.dk)


http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html

 which did the job.

 If somebody can explain why it do work, please do..because æøå works in
 all other input fields.


 Regards
 Flemming




 


-
 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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV


 

 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField and special characters - solution

2007-02-14 Thread Flemming Boller

Hi

I just wanted to share a little trick with you guys who might also be
struggling with this.

I have deployed an application on my linux box. Danish characters (æøå)
works fine, no problem.

Then we add AutoCompleteTextField to make search more nice on one page. And
here comes the problem.

The autocomplete will not work with æøå, but if I used %F8 instead og ø, it
worked.

After some hair-pulling I found  (thanx to woogle.billen.dk)

http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html

which did the job.

If somebody can explain why it do work, please do..because æøå works in all
other input fields.


Regards
Flemming
-
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.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Johan Compagner
is there somehow another ajax component also added to the page when you see the feedback?Can you see if alll the _javascript_ that you see first (when it works) is still there?johan
On 8/30/06, samyem [EMAIL PROTECTED] wrote:
I have a custom converter associated to my autocomplete text field thatthrows a conversion exception if it cannot convert the entered text into theassociated object. Once it does this, I can see the error in the feedback
panel, but the autocomplete feature stops working.Eelco Hillenius wrote: What kind of errors do you mean? Where/ how did you encounter this? Eelco On 8/29/06, samyem 
[EMAIL PROTECTED] wrote: If there is an error associated to AutoCompleteTextField, the auto complete text field does not do auto complete, which prevents the user from
 correcting the problem easily. Can it be done such that even if there are errors in the AutoCompleteTextField, it still behaves normally and show the autocomplete drop down?
 -- View this message in context: http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
 Sent from the Wicket - User forum at Nabble.com. - Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -
 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user--View this message in context: http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
Sent from the Wicket - User forum at Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem

No other ajax component is added except the target is passed the
feedbackcomponent. I can see all the javascripts necessary, and there is no
error either on the javascript side or on the java side. The callback
function to get the autocomplete iterator is not called at all by wicket
when the autocomplete textfield component has the error message associated
to it. I can show my file file if necessary.


Johan Compagner wrote:
 
 is there somehow another ajax component also added to the page when you
 see
 the feedback?
 
 Can you see if alll the javascript that you see first (when it works) is
 still there?
 
 johan
 
 
 On 8/30/06, samyem [EMAIL PROTECTED] wrote:


 I have a custom converter associated to my autocomplete text field that
 throws a conversion exception if it cannot convert the entered text into
 the
 associated object. Once it does this, I can see the error in the feedback
 panel, but the autocomplete feature stops working.


 Eelco Hillenius wrote:
 
  What kind of errors do you mean? Where/ how did you encounter this?
 
  Eelco
 
 
  On 8/29/06, samyem [EMAIL PROTECTED] wrote:
 
  If there is an error associated to AutoCompleteTextField, the auto
  complete
  text field does not do auto complete, which prevents the user from
  correcting the problem easily. Can it be done such that even if there
 are
  errors in the AutoCompleteTextField, it still behaves normally and
 show
  the
  autocomplete drop down?
  --
  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 --
 View this message in context:
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6060105
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Igor Vaynberg
a quickstart project that reproduces this would be great.-IgorOn 8/30/06, samyem [EMAIL PROTECTED]
 wrote:No other ajax component is added except the target is passed thefeedbackcomponent. I can see all the _javascript_s necessary, and there is no
error either on the _javascript_ side or on the java side. The callbackfunction to get the autocomplete iterator is not called at all by wicketwhen the autocomplete textfield component has the error message associated
to it. I can show my file file if necessary.Johan Compagner wrote: is there somehow another ajax component also added to the page when you see the feedback? Can you see if alll the _javascript_ that you see first (when it works) is
 still there? johan On 8/30/06, samyem [EMAIL PROTECTED] wrote: I have a custom converter associated to my autocomplete text field that
 throws a conversion exception if it cannot convert the entered text into the associated object. Once it does this, I can see the error in the feedback panel, but the autocomplete feature stops working.
 Eelco Hillenius wrote:   What kind of errors do you mean? Where/ how did you encounter this?   Eelco 
   On 8/29/06, samyem [EMAIL PROTECTED] wrote:   If there is an error associated to AutoCompleteTextField, the auto
  complete  text field does not do auto complete, which prevents the user from  correcting the problem easily. Can it be done such that even if there are
  errors in the AutoCompleteTextField, it still behaves normally and show  the  autocomplete drop down?  --  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058  Sent from the Wicket - User forum at 
Nabble.com.-  Using Tomcat but need to do more? Need to support web services,
 security?  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___  Wicket-user mailing list  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user-
  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___  Wicket-user mailing list  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user   -- View this message in context:
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587 Sent from the Wicket - User forum at 
Nabble.com. - Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job
 easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo 
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642 ___ Wicket-user mailing list 
Wicket-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wicket-user -
 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server 
v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___ Wicket-user mailing list Wicket-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/wicket-user--View this message in context: http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6060105
Sent from the Wicket - User forum at Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list
Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Eelco Hillenius
Could you please file an issue with our bug tracker?

Eelco

On 8/30/06, samyem [EMAIL PROTECTED] wrote:

 No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the javascripts necessary, and there is no
 error either on the javascript side or on the java side. The callback
 function to get the autocomplete iterator is not called at all by wicket
 when the autocomplete textfield component has the error message associated
 to it. I can show my file file if necessary.


 Johan Compagner wrote:
 
  is there somehow another ajax component also added to the page when you
  see
  the feedback?
 
  Can you see if alll the javascript that you see first (when it works) is
  still there?
 
  johan
 
 
  On 8/30/06, samyem [EMAIL PROTECTED] wrote:
 
 
  I have a custom converter associated to my autocomplete text field that
  throws a conversion exception if it cannot convert the entered text into
  the
  associated object. Once it does this, I can see the error in the feedback
  panel, but the autocomplete feature stops working.
 
 
  Eelco Hillenius wrote:
  
   What kind of errors do you mean? Where/ how did you encounter this?
  
   Eelco
  
  
   On 8/29/06, samyem [EMAIL PROTECTED] wrote:
  
   If there is an error associated to AutoCompleteTextField, the auto
   complete
   text field does not do auto complete, which prevents the user from
   correcting the problem easily. Can it be done such that even if there
  are
   errors in the AutoCompleteTextField, it still behaves normally and
  show
   the
   autocomplete drop down?
   --
   View this message in context:
   http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
  -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
  -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
  
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.
 
 
  -
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
  -
  Using Tomcat but need to do more? Need to support web services, security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 --
 View this message in context: 
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6060105
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but 

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem

I can see that I get the following error reported in my JS console in
firefox:

Error: Wicket.Ajax.AutoComplete is not a constructor
Source File: http://localhost:8081/mm/app?wicket:interface=:2::
Line: 78

The HTML code codes something like:

...
 input id=directShipFilter_form_supplier name=supplier
value=asd type=text autocomplete=off wicket:id=supplier
size=50/script type=text/javascript!--/*--![CDATA[/*!--*/
new
Wicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app?wicket:interface=:2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId=1');
...


Eelco Hillenius wrote:
 
 Could you please file an issue with our bug tracker?
 
 Eelco
 
 On 8/30/06, samyem [EMAIL PROTECTED] wrote:

 No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the javascripts necessary, and there is
 no
 error either on the javascript side or on the java side. The callback
 function to get the autocomplete iterator is not called at all by wicket
 when the autocomplete textfield component has the error message
 associated
 to it. I can show my file file if necessary.


 Johan Compagner wrote:
 
  is there somehow another ajax component also added to the page when you
  see
  the feedback?
 
  Can you see if alll the javascript that you see first (when it works)
 is
  still there?
 
  johan
 
 
  On 8/30/06, samyem [EMAIL PROTECTED] wrote:
 
 
  I have a custom converter associated to my autocomplete text field
 that
  throws a conversion exception if it cannot convert the entered text
 into
  the
  associated object. Once it does this, I can see the error in the
 feedback
  panel, but the autocomplete feature stops working.
 
 
  Eelco Hillenius wrote:
  
   What kind of errors do you mean? Where/ how did you encounter this?
  
   Eelco
  
  
   On 8/29/06, samyem [EMAIL PROTECTED] wrote:
  
   If there is an error associated to AutoCompleteTextField, the auto
   complete
   text field does not do auto complete, which prevents the user from
   correcting the problem easily. Can it be done such that even if
 there
  are
   errors in the AutoCompleteTextField, it still behaves normally and
  show
   the
   autocomplete drop down?
   --
   View this message in context:
   http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

 --
 View this message in context:
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6060105
 Sent from the Wicket - User forum 

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem

Also, I forgot to add that :

script type=text/javascript
src=/mm/app/resources/wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteBehavior/wicket-autocomplete.js/script

is missing in the second page with the error in the feedback panel. So the
problem is that the java script for the component didn't get added when the
component has an error.




samyem wrote:
 
 I can see that I get the following error reported in my JS console in
 firefox:
 
 Error: Wicket.Ajax.AutoComplete is not a constructor
 Source File: http://localhost:8081/mm/app?wicket:interface=:2::
 Line: 78
 
 The HTML code codes something like:
 
 ...
  input id=directShipFilter_form_supplier
 name=supplier value=asd type=text autocomplete=off
 wicket:id=supplier size=50/script
 type=text/javascript!--/*--![CDATA[/*!--*/
 new
 Wicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app?wicket:interface=:2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId=1');
 ...
 
 
 Eelco Hillenius wrote:
 
 Could you please file an issue with our bug tracker?
 
 Eelco
 
 On 8/30/06, samyem [EMAIL PROTECTED] wrote:

 No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the javascripts necessary, and there is
 no
 error either on the javascript side or on the java side. The callback
 function to get the autocomplete iterator is not called at all by wicket
 when the autocomplete textfield component has the error message
 associated
 to it. I can show my file file if necessary.


 Johan Compagner wrote:
 
  is there somehow another ajax component also added to the page when
 you
  see
  the feedback?
 
  Can you see if alll the javascript that you see first (when it works)
 is
  still there?
 
  johan
 
 
  On 8/30/06, samyem [EMAIL PROTECTED] wrote:
 
 
  I have a custom converter associated to my autocomplete text field
 that
  throws a conversion exception if it cannot convert the entered text
 into
  the
  associated object. Once it does this, I can see the error in the
 feedback
  panel, but the autocomplete feature stops working.
 
 
  Eelco Hillenius wrote:
  
   What kind of errors do you mean? Where/ how did you encounter this?
  
   Eelco
  
  
   On 8/29/06, samyem [EMAIL PROTECTED] wrote:
  
   If there is an error associated to AutoCompleteTextField, the auto
   complete
   text field does not do auto complete, which prevents the user from
   correcting the problem easily. Can it be done such that even if
 there
  are
   errors in the AutoCompleteTextField, it still behaves normally and
  show
   the
   autocomplete drop down?
   --
   View this message in context:
  
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your
 job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Janne Hietamäki
Ah, this must be same problem as this https://sourceforge.net/ 
tracker/?func=detailatid=684975aid=1547028group_id=119783

I'll commit the fix in a second.

Janne

On 30.8.2006, at 21.13, samyem wrote:


 Also, I forgot to add that :

 script type=text/javascript
 src=/mm/app/resources/ 
 wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteBehavior/w 
 icket-autocomplete.js/script

 is missing in the second page with the error in the feedback panel.  
 So the
 problem is that the java script for the component didn't get added  
 when the
 component has an error.




 samyem wrote:

 I can see that I get the following error reported in my JS console in
 firefox:

 Error: Wicket.Ajax.AutoComplete is not a constructor
 Source File: http://localhost:8081/mm/app?wicket:interface=:2::
 Line: 78

 The HTML code codes something like:

 ...
  input id=directShipFilter_form_supplier
 name=supplier value=asd type=text autocomplete=off
 wicket:id=supplier size=50/script
 type=text/javascript!--/*--![CDATA[/*!--*/
 new
 Wicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app? 
 wicket:interface=: 
 2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId 
 =1');
 ...


 Eelco Hillenius wrote:

 Could you please file an issue with our bug tracker?

 Eelco

 On 8/30/06, samyem [EMAIL PROTECTED] wrote:

 No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the javascripts necessary, and  
 there is
 no
 error either on the javascript side or on the java side. The  
 callback
 function to get the autocomplete iterator is not called at all  
 by wicket
 when the autocomplete textfield component has the error message
 associated
 to it. I can show my file file if necessary.


 Johan Compagner wrote:

 is there somehow another ajax component also added to the page  
 when
 you
 see
 the feedback?

 Can you see if alll the javascript that you see first (when it  
 works)
 is
 still there?

 johan


 On 8/30/06, samyem [EMAIL PROTECTED] wrote:


 I have a custom converter associated to my autocomplete text  
 field
 that
 throws a conversion exception if it cannot convert the entered  
 text
 into
 the
 associated object. Once it does this, I can see the error in the
 feedback
 panel, but the autocomplete feature stops working.


 Eelco Hillenius wrote:

 What kind of errors do you mean? Where/ how did you encounter  
 this?

 Eelco


 On 8/29/06, samyem [EMAIL PROTECTED] wrote:

 If there is an error associated to AutoCompleteTextField,  
 the auto
 complete
 text field does not do auto complete, which prevents the  
 user from
 correcting the problem easily. Can it be done such that even if
 there
 are
 errors in the AutoCompleteTextField, it still behaves  
 normally and
 show
 the
 autocomplete drop down?
 --
 View this message in context:

 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
 Sent from the Wicket - User forum at Nabble.com.




 --- 
 --
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to  
 make your
 job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on  
 Apache
 Geronimo


 http://sel.as-us.falkag.net/sel? 
 cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user




 --- 
 --
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make  
 your
 job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on  
 Apache
 Geronimo


 http://sel.as-us.falkag.net/sel? 
 cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



 --
 View this message in context:
 http://www.nabble.com/AutoCompleteTextField- 
 tf2186341.html#a6052587
 Sent from the Wicket - User forum at Nabble.com.



 --- 
 --
 Using Tomcat but need to do more? Need to support web services,
 security?
 Get stuff done quickly with pre-integrated technology to make  
 your
 job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo

 http://sel.as-us.falkag.net/sel? 
 cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



 --- 
 --
 Using Tomcat but need to do more? Need to support web services,
 security?
 

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Igor Vaynberg
looks like it stops recognizing the function signature. maybe it is related to the other bug someone reported where _javascript_ headers are contributed again and again after ajax updates - that would cause this.a quickstrat would really help out here :)
-IgorOn 8/30/06, samyem [EMAIL PROTECTED] wrote:
I can see that I get the following error reported in my JS console infirefox:Error: Wicket.Ajax.AutoComplete is not a constructorSource File: 
http://localhost:8081/mm/app?wicket:interface=:2::Line: 78The HTML code codes something like:... input id=directShipFilter_form_supplier name=supplier
value=asd type=text autocomplete=off wicket:id=suppliersize=50/script type=text/_javascript_!--/*--![CDATA[/*!--*/
newWicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app?wicket:interface=:2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId=1');...Eelco Hillenius wrote:
 Could you please file an issue with our bug tracker? Eelco On 8/30/06, samyem [EMAIL PROTECTED] wrote: No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the _javascript_s necessary, and there is no error either on the _javascript_ side or on the java side. The callback function to get the autocomplete iterator is not called at all by wicket
 when the autocomplete textfield component has the error message associated to it. I can show my file file if necessary. Johan Compagner wrote: 
  is there somehow another ajax component also added to the page when you  see  the feedback?   Can you see if alll the _javascript_ that you see first (when it works)
 is  still there?   johanOn 8/30/06, samyem [EMAIL PROTECTED] wrote:
I have a custom converter associated to my autocomplete text field that  throws a conversion exception if it cannot convert the entered text
 into  the  associated object. Once it does this, I can see the error in the feedback  panel, but the autocomplete feature stops working.
Eelco Hillenius wrote: What kind of errors do you mean? Where/ how did you encounter this?  
   Eelco   On 8/29/06, samyem [EMAIL PROTECTED] wrote:  
   If there is an error associated to AutoCompleteTextField, the auto   complete   text field does not do auto complete, which prevents the user from
   correcting the problem easily. Can it be done such that even if there  are   errors in the AutoCompleteTextField, it still behaves normally and
  show   the   autocomplete drop down?   --   View this message in context:   
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058   Sent from the Wicket - User forum at 
Nabble.com.-   Using Tomcat but need to do more? Need to support web services,
  security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server 
v.1.0.1 based on Apache   Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642   ___   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net   https://lists.sourceforge.net/lists/listinfo/wicket-user
-   Using Tomcat but need to do more? Need to support web services,
  security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server 
v.1.0.1 based on Apache  Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___   Wicket-user mailing list   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user 
  --  View this message in context:  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.-
  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to make your job  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache  Geronimo  
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user
-  Using Tomcat but need to do more? Need to support web services,
 security?  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___  Wicket-user mailing list  Wicket-user@lists.sourceforge.net
  

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Ryan Sonnek
quickstrat??? =)On 8/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote:
looks like it stops recognizing the function signature. maybe it is related to the other bug someone reported where _javascript_ headers are contributed again and again after ajax updates - that would cause this.
a quickstrat would really help out here :)
-IgorOn 8/30/06, samyem 
[EMAIL PROTECTED] wrote:
I can see that I get the following error reported in my JS console infirefox:Error: Wicket.Ajax.AutoComplete is not a constructorSource File: 

http://localhost:8081/mm/app?wicket:interface=:2::Line: 78The HTML code codes something like:... input id=directShipFilter_form_supplier name=supplier
value=asd type=text autocomplete=off wicket:id=suppliersize=50/script type=text/_javascript_!--/*--![CDATA[/*!--*/
newWicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app?wicket:interface=:2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId=1');...Eelco Hillenius wrote:
 Could you please file an issue with our bug tracker? Eelco On 8/30/06, samyem 
[EMAIL PROTECTED] wrote: No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the _javascript_s necessary, and there is no error either on the _javascript_ side or on the java side. The callback function to get the autocomplete iterator is not called at all by wicket
 when the autocomplete textfield component has the error message associated to it. I can show my file file if necessary. Johan Compagner wrote: 
  is there somehow another ajax component also added to the page when you  see  the feedback?   Can you see if alll the _javascript_ that you see first (when it works)
 is  still there?   johanOn 8/30/06, samyem 
[EMAIL PROTECTED] wrote:
I have a custom converter associated to my autocomplete text field that  throws a conversion exception if it cannot convert the entered text
 into  the  associated object. Once it does this, I can see the error in the feedback  panel, but the autocomplete feature stops working.
Eelco Hillenius wrote: What kind of errors do you mean? Where/ how did you encounter this?  
   Eelco   On 8/29/06, samyem 
[EMAIL PROTECTED] wrote:  
   If there is an error associated to AutoCompleteTextField, the auto   complete   text field does not do auto complete, which prevents the user from
   correcting the problem easily. Can it be done such that even if there  are   errors in the AutoCompleteTextField, it still behaves normally and
  show   the   autocomplete drop down?   --   View this message in context:   
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
   Sent from the Wicket - User forum at 
Nabble.com.-   Using Tomcat but need to do more? Need to support web services,
  security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server 
v.1.0.1 based on Apache   Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642   ___   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net   
https://lists.sourceforge.net/lists/listinfo/wicket-user
-   Using Tomcat but need to do more? Need to support web services,
  security?   Get stuff done quickly with pre-integrated technology to make your job   easier   Download IBM WebSphere Application Server 
v.1.0.1 based on Apache  Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___   Wicket-user mailing list   
Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
 
  --  View this message in context:  
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.  
  -
  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to make your job  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache  Geronimo  

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  
https://lists.sourceforge.net/lists/listinfo/wicket-user
-  Using Tomcat but need to do more? Need to support web services,
 security?  Get stuff done quickly with pre-integrated technology to make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache

 Geronimo  http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
  ___  Wicket-user 

Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread Eelco Hillenius
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, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-30 Thread samyem

I tried to manually added the java script, but I still get these two js
errors:

Error: Wicket is not defined
Source File: http://localhost:8081/mm/javascript/wicket-autocomplete.js
Line: 7

and

Error: Wicket.Ajax.AutoComplete is not a constructor
Source File:
http://localhost:8081/mm/app?wicket:bookmarkablePage=:com.wsi.mm.ui.directship.newds.DirectShipBasePage
Line: 79

It does not like the line:
Wicket.Ajax.AutoComplete=function(elementId,callbackUrl){




samyem wrote:
 
 Also, I forgot to add that :
 
 script type=text/javascript
 src=/mm/app/resources/wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteBehavior/wicket-autocomplete.js/script
 
 is missing in the second page with the error in the feedback panel. So the
 problem is that the java script for the component didn't get added when
 the component has an error.
 
 
 
 
 samyem wrote:
 
 I can see that I get the following error reported in my JS console in
 firefox:
 
 Error: Wicket.Ajax.AutoComplete is not a constructor
 Source File: http://localhost:8081/mm/app?wicket:interface=:2::
 Line: 78
 
 The HTML code codes something like:
 
 ...
  input id=directShipFilter_form_supplier
 name=supplier value=asd type=text autocomplete=off
 wicket:id=supplier size=50/script
 type=text/javascript!--/*--![CDATA[/*!--*/
 new
 Wicket.Ajax.AutoComplete('directShipFilter_form_supplier','/mm/app?wicket:interface=:2:directShipFilter:form:supplier::IBehaviorListenerwicket:behaviorId=1');
 ...
 
 
 Eelco Hillenius wrote:
 
 Could you please file an issue with our bug tracker?
 
 Eelco
 
 On 8/30/06, samyem [EMAIL PROTECTED] wrote:

 No other ajax component is added except the target is passed the
 feedbackcomponent. I can see all the javascripts necessary, and there
 is no
 error either on the javascript side or on the java side. The callback
 function to get the autocomplete iterator is not called at all by
 wicket
 when the autocomplete textfield component has the error message
 associated
 to it. I can show my file file if necessary.


 Johan Compagner wrote:
 
  is there somehow another ajax component also added to the page when
 you
  see
  the feedback?
 
  Can you see if alll the javascript that you see first (when it works)
 is
  still there?
 
  johan
 
 
  On 8/30/06, samyem [EMAIL PROTECTED] wrote:
 
 
  I have a custom converter associated to my autocomplete text field
 that
  throws a conversion exception if it cannot convert the entered text
 into
  the
  associated object. Once it does this, I can see the error in the
 feedback
  panel, but the autocomplete feature stops working.
 
 
  Eelco Hillenius wrote:
  
   What kind of errors do you mean? Where/ how did you encounter
 this?
  
   Eelco
  
  
   On 8/29/06, samyem [EMAIL PROTECTED] wrote:
  
   If there is an error associated to AutoCompleteTextField, the
 auto
   complete
   text field does not do auto complete, which prevents the user
 from
   correcting the problem easily. Can it be done such that even if
 there
  are
   errors in the AutoCompleteTextField, it still behaves normally
 and
  show
   the
   autocomplete drop down?
   --
   View this message in context:
  
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
   Sent from the Wicket - User forum at Nabble.com.
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make
 your job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
   Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
  
 
 -
   Using Tomcat but need to do more? Need to support web services,
  security?
   Get stuff done quickly with pre-integrated technology to make your
 job
   easier
   Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
  
 
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
   ___
   Wicket-user mailing list
   Wicket-user@lists.sourceforge.net
   https://lists.sourceforge.net/lists/listinfo/wicket-user
  
  
 
  --
  View this message in context:
  http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
  Sent from the Wicket - User forum at Nabble.com.
 
 
 
 -
  Using Tomcat but need to do more? Need to support web services,
 security?
  Get stuff done quickly with pre-integrated technology to make your
 job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on Apache
  Geronimo
 
 

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, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField

2006-08-29 Thread samyem

If there is an error associated to AutoCompleteTextField, the auto complete
text field does not do auto complete, which prevents the user from
correcting the problem easily. Can it be done such that even if there are
errors in the AutoCompleteTextField, it still behaves normally and show the
autocomplete drop down?
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-29 Thread Eelco Hillenius
What kind of errors do you mean? Where/ how did you encounter this?

Eelco


On 8/29/06, samyem [EMAIL PROTECTED] wrote:

 If there is an error associated to AutoCompleteTextField, the auto complete
 text field does not do auto complete, which prevents the user from
 correcting the problem easily. Can it be done such that even if there are
 errors in the AutoCompleteTextField, it still behaves normally and show the
 autocomplete drop down?
 --
 View this message in context: 
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField

2006-08-29 Thread samyem

I have a custom converter associated to my autocomplete text field that
throws a conversion exception if it cannot convert the entered text into the
associated object. Once it does this, I can see the error in the feedback
panel, but the autocomplete feature stops working.


Eelco Hillenius wrote:
 
 What kind of errors do you mean? Where/ how did you encounter this?
 
 Eelco
 
 
 On 8/29/06, samyem [EMAIL PROTECTED] wrote:

 If there is an error associated to AutoCompleteTextField, the auto
 complete
 text field does not do auto complete, which prevents the user from
 correcting the problem easily. Can it be done such that even if there are
 errors in the AutoCompleteTextField, it still behaves normally and show
 the
 autocomplete drop down?
 --
 View this message in context:
 http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6048058
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache
 Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-tf2186341.html#a6052587
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin

Started using Wicket and found a problem ;-)

To reproduce a bug:
1. Make a simple page with a form containing AutoCompleteTextField and
IndicatingAjaxSubmitButton.
2. In a page-class create a Form, add IndicatingAjaxSubmitButton and then
AutoCompleteTextField.
That's all, your AutoCompleteTextField is not working :-)
BUT, if you change the order of adding components to form so that you first
add AutoCompleteTextField and then IndicatingAjaxSubmitButton all is going
to be ok.

I've created a minimal sample
ftp://public.ntu-kpi.kiev.ua/incoming/wicket_bug/ac_bug.zip 
This sample reflects my real life situation: parent page with part of the
form + child page with some controls added.

Sneaking through sources I've found a problem here:

wicket.behavior.AbstractBehavior

public final void renderHead(final Response response)
{
Set contributors = (Set)headContribHolder.get();

// were any contributors set?
if (contributors == null)
{
contributors = new HashSet(1);
headContribHolder.set(contributors);
}

// get the id of the implementation; we need this trick to be
// able to support multiple implementations
String implementationId = getImplementationId();

// was a contribution for this specific implementation done yet?
if (!contributors.contains(implementationId))
{
onRenderHeadInitContribution(response); 

contributors.add(implementationId);
}

onRenderHeadContribution(response);
}

- is called just once, so if AutoCompleteTextField is first in a list
of page children, then it adds common ajax js's and autocomplete required
js, and if IndicatingAjaxSubmitButton is first in a list of page children,
then it adds just common ajax js's to header.

Can you suggest a patch to this problem ?
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5980949
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Janne Hietamäki

Hi,

IIRC, this has already been fixed in the svn.

Janne


On 25.8.2006, at 13.30, Konstantin wrote:


 Started using Wicket and found a problem ;-)

 To reproduce a bug:
 1. Make a simple page with a form containing AutoCompleteTextField and
 IndicatingAjaxSubmitButton.
 2. In a page-class create a Form, add IndicatingAjaxSubmitButton  
 and then
 AutoCompleteTextField.
 That's all, your AutoCompleteTextField is not working :-)
 BUT, if you change the order of adding components to form so that  
 you first
 add AutoCompleteTextField and then IndicatingAjaxSubmitButton all  
 is going
 to be ok.

 I've created a minimal sample
 ftp://public.ntu-kpi.kiev.ua/incoming/wicket_bug/ac_bug.zip
 This sample reflects my real life situation: parent page with part  
 of the
 form + child page with some controls added.

 Sneaking through sources I've found a problem here:

 wicket.behavior.AbstractBehavior

   public final void renderHead(final Response response)
   {
   Set contributors = (Set)headContribHolder.get();

   // were any contributors set?
   if (contributors == null)
   {
   contributors = new HashSet(1);
   headContribHolder.set(contributors);
   }

   // get the id of the implementation; we need this trick to be
   // able to support multiple implementations
   String implementationId = getImplementationId();

   // was a contribution for this specific implementation done yet?
   if (!contributors.contains(implementationId))
   {
   onRenderHeadInitContribution(response); 
 
   contributors.add(implementationId);
   }

   onRenderHeadContribution(response);
   }

 - is called just once, so if AutoCompleteTextField is first in  
 a list
 of page children, then it adds common ajax js's and autocomplete  
 required
 js, and if IndicatingAjaxSubmitButton is first in a list of page  
 children,
 then it adds just common ajax js's to header.

 Can you suggest a patch to this problem ?
 -- 
 View this message in context: http://www.nabble.com/ 
 AutoCompleteTextField-conflict-tf2163954.html#a5980949
 Sent from the Wicket - User forum at Nabble.com.


 -- 
 ---
 Using Tomcat but need to do more? Need to support web services,  
 security?
 Get stuff done quickly with pre-integrated technology to make your  
 job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache  
 Geronimo
 http://sel.as-us.falkag.net/sel? 
 cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin

Hmm ... I downloaded latest 1.2.1 from Sourceforge.
I appreciate if you just test my sample against latest 1.2.1 in SVN.



Janne Hietamäki wrote:
 
 
 Hi,
 
 IIRC, this has already been fixed in the svn.
 
 Janne
 
 
 On 25.8.2006, at 13.30, Konstantin wrote:
 
 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5981913
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Martijn Dashorst
you did check out from branches/WICKET_1_2, did you?

Martijn

On 8/25/06, Konstantin [EMAIL PROTECTED] wrote:

 Hmm ... I downloaded latest 1.2.1 from Sourceforge.
 I appreciate if you just test my sample against latest 1.2.1 in SVN.



 Janne Hietamäki wrote:
 
 
  Hi,
 
  IIRC, this has already been fixed in the svn.
 
  Janne
 
 
  On 25.8.2006, at 13.30, Konstantin wrote:
 
 

 --
 View this message in context: 
 http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5981913
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.1 now! Embed Wicket components in your portals!
-- http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Martijn Dashorst
Ah, then either you have to build from svn, or wait until we release
1.2.2, which will be around this weekend.

Martijn


On 8/25/06, Konstantin [EMAIL PROTECTED] wrote:

 No. I use packaged distribution (1.2.1) from Sourceforge.
 I don't realy wanted to check out and build wicket from sources, so I asked
 to test my sample against latest sources from SVN. Now I see that I'll have
 to learn how to do it, if I want to develop with Wicket :-\


 Martijn Dashorst-4 wrote:
 
  you did check out from branches/WICKET_1_2, did you?
 
  Martijn
 
 
 

 --
 View this message in context: 
 http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5983792
 Sent from the Wicket - User forum at Nabble.com.


 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user



-- 
Download Wicket 1.2.1 now! Embed Wicket components in your portals!
-- http://wicketframework.org

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Igor Vaynberg
the latest in svn, like martijn said, lives in svnroot/branches/WICKET_1_2 -- not what you downloaded.we already hit this usecase and fixed it, like janne said. it would be nice if you could test it yourself, this is a community effort afterall. if you however dont want to test it yourself, then please file a bug report on 
sf.net and we will get to you as soon as possible.the best way to get the bugs that affect you fixed quicker is to help us help you as much as possible, and sometimes that means doing some work.
-IgorOn 8/25/06, Konstantin [EMAIL PROTECTED] wrote:
No. I use packaged distribution (1.2.1) from Sourceforge.I don't realy wanted to check out and build wicket from sources, so I askedto test my sample against latest sources from SVN. Now I see that I'll have
to learn how to do it, if I want to develop with Wicket :-\Martijn Dashorst-4 wrote: you did check out from branches/WICKET_1_2, did you? Martijn
--View this message in context: http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5983792Sent from the Wicket - User forum at 
Nabble.com.-Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimohttp://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin



igor.vaynberg wrote:
 
 the latest in svn, like martijn said, lives in svnroot/branches/WICKET_1_2
 -- not what you downloaded.
 
 we already hit this usecase and fixed it, like janne said. it would be
 nice
 if you could test it yourself, this is a community effort afterall. if you
 however dont want to test it yourself, then please file a bug report on
 sf.net and we will get to you as soon as possible.
 
 the best way to get the bugs that affect you fixed quicker is to help us
 help you as much as possible, and sometimes that means doing some work.
 
 -Igor
 

Ok. I'm new to java development, so for now I'm not very familiar with
building libraries from sources :-). Well ... going to try. Sorry to bother
you. Just tried to inform you about bug. 
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5987343
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread V. Jenks

I'm taking my first crack at using some of the built-in Ajax stuff in Wicket
- pretty cool by the way!

I'm using the AutoCompleteTextField to filter some data and it works except
that I'm getting a javascript error.  It doesn't seem to be inhibiting any
of the functionality but it looks bad, nonetheless.  

Nothing shows up in the WICKET AJAX DEBUG dialog other than what I would
have expected:

 INFO: received ajax autocomplete response. 60201 characters.
 INFO: elementId=filterForm_itemCodes-autocomplete
 INFO: ulli textvalue=6990769907/lili
textvalue=6990869908/lili textvalue=6990969909/lili
textvalue=6991069910/lili

The error is 'cc' is undefined.

I'll post the code for the page if it's needed but really all I did was copy
the code from the wicket-examples and change it to pull data instead of a
static list like the example uses.  The *only* place where I strayed was I
took the wicket:extend tag out that was wrapping the form tag because,
not only am I not familiar w/ it, I got as far as I did w/o it...and it
throws an error w/ it in there.  It mentions something about markup
inheritence but I'm unfamiliar w/ that part of wicket still...so forgive my
ignorance there.

Hopefully this jumps out at someone?

Thanks!
-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-giving-js-error-tf2165873.html#a5987358
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread Janne Hietamäki

This is also fixed in the svn.

Janne



On 25.8.2006, at 19.59, V. Jenks wrote:


 I'm taking my first crack at using some of the built-in Ajax stuff  
 in Wicket
 - pretty cool by the way!

 I'm using the AutoCompleteTextField to filter some data and it  
 works except
 that I'm getting a javascript error.  It doesn't seem to be  
 inhibiting any
 of the functionality but it looks bad, nonetheless.

 Nothing shows up in the WICKET AJAX DEBUG dialog other than what I  
 would
 have expected:

  INFO: received ajax autocomplete response. 60201 characters.
  INFO: elementId=filterForm_itemCodes-autocomplete
  INFO: ulli textvalue=6990769907/lili
 textvalue=6990869908/lili textvalue=6990969909/lili
 textvalue=6991069910/lili

 The error is 'cc' is undefined.

 I'll post the code for the page if it's needed but really all I did  
 was copy
 the code from the wicket-examples and change it to pull data  
 instead of a
 static list like the example uses.  The *only* place where I  
 strayed was I
 took the wicket:extend tag out that was wrapping the form tag  
 because,
 not only am I not familiar w/ it, I got as far as I did w/o  
 it...and it
 throws an error w/ it in there.  It mentions something about markup
 inheritence but I'm unfamiliar w/ that part of wicket still...so  
 forgive my
 ignorance there.

 Hopefully this jumps out at someone?



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Eelco Hillenius
 Ok. I'm new to java development, so for now I'm not very familiar with
 building libraries from sources :-). Well ... going to try. Sorry to bother
 you. Just tried to inform you about bug.

You weren't bothering us at all. Thanks for reporting. The only way to
make this framework great is to have users report anything they find.
What Igor explained is that we preferably work with issues
(http://sourceforge.net/tracker/?group_id=119783atid=684975 and also
patches and feature requests) so that they won't get lost in the ton
of daily email we receive and will be attended to in due time. The
other thing Igor said was the more we have the case prepared/ the less
work for us left to be done, the more likely it is the issue will be
looked at quickly.

Keep em comming! :)

Eelco

-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField giving js error

2006-08-25 Thread V. Jenks

Excellent, thank you - I'll be sure to test 1.2.2 as soon as it is released.


Janne Hietamäki wrote:
 
 
 This is also fixed in the svn.
 
 Janne
 
 
 
 On 25.8.2006, at 19.59, V. Jenks wrote:
 

 I'm taking my first crack at using some of the built-in Ajax stuff  
 in Wicket
 - pretty cool by the way!

 I'm using the AutoCompleteTextField to filter some data and it  
 works except
 that I'm getting a javascript error.  It doesn't seem to be  
 inhibiting any
 of the functionality but it looks bad, nonetheless.

 Nothing shows up in the WICKET AJAX DEBUG dialog other than what I  
 would
 have expected:

  INFO: received ajax autocomplete response. 60201 characters.
  INFO: elementId=filterForm_itemCodes-autocomplete
  INFO: ulli textvalue=6990769907/lili
 textvalue=6990869908/lili textvalue=6990969909/lili
 textvalue=6991069910/lili

 The error is 'cc' is undefined.

 I'll post the code for the page if it's needed but really all I did  
 was copy
 the code from the wicket-examples and change it to pull data  
 instead of a
 static list like the example uses.  The *only* place where I  
 strayed was I
 took the wicket:extend tag out that was wrapping the form tag  
 because,
 not only am I not familiar w/ it, I got as far as I did w/o  
 it...and it
 throws an error w/ it in there.  It mentions something about markup
 inheritence but I'm unfamiliar w/ that part of wicket still...so  
 forgive my
 ignorance there.

 Hopefully this jumps out at someone?
 
 
 
 -
 Using Tomcat but need to do more? Need to support web services, security?
 Get stuff done quickly with pre-integrated technology to make your job
 easier
 Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
 http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
 ___
 Wicket-user mailing list
 Wicket-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/wicket-user
 
 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-giving-js-error-tf2165873.html#a5987665
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Igor Vaynberg
um...and there are recent snapshots available at http://maven.sateh.com/wicket/wicket/-IgorOn 8/25/06, 
Igor Vaynberg [EMAIL PROTECTED] wrote:
there isnt that much to do to get it builtinstall an svn clientinstall apache maven 2cd workspacesvn co 
https://svn.sourceforge.net/svnroot/wicket/branches/WICKET_1_2/wicket-parent
cd wicket-parentmvn installcd ..svn co https://svn.sourceforge.net/svnroot/wicket/branches/WICKET_1_2/wicket
cd wicket
mvn installthats it - if you look at workspace/wicket/target you will see a freshly built wicket jarif you use eclipse as your ide its even easier - we keep eclipse project files in svn
-Igor
On 8/25/06, Eelco Hillenius [EMAIL PROTECTED]
 wrote:
 Ok. I'm new to java development, so for now I'm not very familiar with building libraries from sources :-). Well ... going to try. Sorry to bother you. Just tried to inform you about bug.You weren't bothering us at all. Thanks for reporting. The only way to
make this framework great is to have users report anything they find.What Igor explained is that we preferably work with issues(
http://sourceforge.net/tracker/?group_id=119783atid=684975
 and alsopatches and feature requests) so that they won't get lost in the tonof daily email we receive and will be attended to in due time. Theother thing Igor said was the more we have the case prepared/ the less
work for us left to be done, the more likely it is the issue will belooked at quickly.Keep em comming! :)Eelco-Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo

http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___Wicket-user mailing list

Wicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] AutoCompleteTextField conflict

2006-08-25 Thread Konstantin

Built all sources. It's still not working.

Bug-report:
http://sourceforge.net/tracker/index.php?func=detailaid=1547028group_id=119783atid=684975


igor.vaynberg wrote:
 
 um...and there are recent snapshots available at
 
 http://maven.sateh.com/wicket/wicket/
 
 -Igor
 
 On 8/25/06, Igor Vaynberg [EMAIL PROTECTED] wrote:

 there isnt that much to do to get it built

 install an svn client
 install apache maven 2

 cd workspace
 svn co
 https://svn.sourceforge.net/svnroot/wicket/branches/WICKET_1_2/wicket-parent

 cd wicket-parent
 mvn install
 cd ..
 svn co
 https://svn.sourceforge.net/svnroot/wicket/branches/WICKET_1_2/wicket
 cd wicket
 mvn install

 thats it - if you look at workspace/wicket/target you will see a freshly
 built wicket jar

 if you use eclipse as your ide its even easier - we keep eclipse project
 files in svn

 -Igor



 

-- 
View this message in context: 
http://www.nabble.com/AutoCompleteTextField-conflict-tf2163954.html#a5995080
Sent from the Wicket - User forum at Nabble.com.


-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid=120709bid=263057dat=121642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


[Wicket-user] autocompletetextfield problem

2006-05-01 Thread myu
Hi all

I am experiencing problem with the AutoCompleteTextField. Somehow i am not able 
to
select the last item in the list, which means that if i only have one item i 
cant
select that item.
Right now i have made a workaround by adding a dummy field, so there is also at 
least
two items in the list. I have also tried to use the wicket example with the 
locales
but are experiencing the same problem.

Am I doing something wrong or is this a know bug??

Kind regards

/Murat


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread Igor Vaynberg
if it was a known bug it wouldve been fixed :) please file a bug report.-IgorOn 5/1/06, [EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote:Hi allI am experiencing problem with the AutoCompleteTextField. Somehow i am not able to
select the last item in the list, which means that if i only have one item i cantselect that item.Right now i have made a workaround by adding a dummy field, so there is also at leasttwo items in the list. I have also tried to use the wicket example with the locales
but are experiencing the same problem.Am I doing something wrong or is this a know bug??Kind regards/Murat---Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___Wicket-user mailing listWicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user


Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread Igor Vaynberg
Thanks,will try to take a look tonight.-IgorOn 5/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED]
 wrote:Hi IgorWell maybe it was fixed in cvs :). I am currently running wicket 
1.2-rc2.I have submitted a bug report at sf.net.Kind regards/MuratIgor Vaynberg [EMAIL PROTECTED] wrote:
 if it was a known bug it wouldve been fixed :) please file a bug report. -Igor On 5/1/06, [EMAIL PROTECTED] 
[EMAIL PROTECTED] wrote:   Hi all   I am experiencing problem with the AutoCompleteTextField. Somehow i am not  able to  select the last item in the list, which means that if i
 only have one item  i cant  select that item.  Right now i have made a workaround by adding a dummy field, so there is  also at least  two items in the list. I have also tried to use the wicket
 example with  the locales  but are experiencing the same problem.   Am I doing something wrong or is this a know bug??   Kind regards 
  /Murat---  Using Tomcat but need to do more? Need to support web services, security?  Get stuff done quickly with pre-integrated technology to
 make your job  easier  Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo  
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat 1642  ___  Wicket-user mailing list  
Wicket-user@lists.sourceforge.net  https://lists.sourceforge.net/lists/listinfo/wicket-user ---
Using Tomcat but need to do more? Need to support web services, security?Get stuff done quickly with pre-integrated technology to make your job easierDownload IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat1642___
Wicket-user mailing listWicket-user@lists.sourceforge.nethttps://lists.sourceforge.net/lists/listinfo/wicket-user



Re: [Wicket-user] autocompletetextfield problem

2006-05-01 Thread myu
Hi Igor

Well maybe it was fixed in cvs :). I am currently running wicket 1.2-rc2.
I have submitted a bug report at sf.net.

Kind regards

/Murat

Igor Vaynberg [EMAIL PROTECTED] wrote:
 if it was a known bug it wouldve been fixed :) please file a
 bug report.
 
 -Igor
 
 
 On 5/1/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:
 
  Hi all
 
  I am experiencing problem with the AutoCompleteTextField.
 Somehow i am not
  able to
  select the last item in the list, which means that if i
 only have one item
  i cant
  select that item.
  Right now i have made a workaround by adding a dummy
 field, so there is
  also at least
  two items in the list. I have also tried to use the wicket
 example with
  the locales
  but are experiencing the same problem.
 
  Am I doing something wrong or is this a know bug??
 
  Kind regards
 
  /Murat
 
 
  ---
  Using Tomcat but need to do more? Need to support web
 services, security?
  Get stuff done quickly with pre-integrated technology to
 make your job
  easier
  Download IBM WebSphere Application Server v.1.0.1 based on
 Apache Geronimo
 
 http://sel.as-us.falkag.net/sel?cmdlnkkid0709bid3057dat
 1642
  ___
  Wicket-user mailing list
  Wicket-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/wicket-user
 



---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnkkid0709bid3057dat1642
___
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user