Re: AutoComplete suggestion list disappear when I click on scrollbar in IE

2015-04-17 Thread ravala
I have done bit investigation and came to known the below code is called in
IE when we click on scroll bar.
Line no 96 in wicket-autocomplete.js
Wicket.Event.add(obj, 'blur', function (jqEvent) {
window.setTimeout(hideAutoComplete, 500);
});
In all other browsers this is called only when we click on text not on
scroll bar.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AutoComplete-suggestion-list-disappear-when-I-click-on-scrollbar-in-IE-tp4670222p4670349.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoComplete suggestion list disappear when I click on scrollbar in IE

2015-04-14 Thread ravala
Hi,

Thanks for your advice, I have created the jira card with the Quick start
example. Below is the link 
https://issues.apache.org/jira/browse/WICKET-5882

Regards,
Ramesh

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AutoComplete-suggestion-list-disappear-when-I-click-on-scrollbar-in-IE-tp4670222p4670300.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: AutoComplete suggestion list disappear when I click on scrollbar in IE

2015-04-09 Thread Martin Grigorov
Hi,

Please file a ticket at JIRA with a quickstart that reproduces the issue.
Thanks!

Martin Grigorov
Freelancer, available for hire!
Wicket Training and Consulting
https://twitter.com/mtgrigorov

On Wed, Apr 8, 2015 at 4:24 PM, ravala  wrote:

> Hi,
>
> I am using Wicket's(version ) AutoCompleteTextField in my application to a
> form component,
> when I type something I will get the suggestion list, the suggestion list
> container width
> is 300px, so when the text inside the container exceeds the width of the
> container,
> we will get a horizontal scroll bar for the suggestion list, the problem is
> when I scroll
> to view the text the suggestion list is disappearing. This happens in all
> IE
> browser
> versions IE8, IE9, IE10 and IE11. I am using wicket version 6.19.
> I have attached the image to show suggestion list with scroll bar.
> <
> http://apache-wicket.1842946.n4.nabble.com/file/n4670222/autocompleteScroll.png
> >
>
> Regards
> Ramesh V.
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/AutoComplete-suggestion-list-disappear-when-I-click-on-scrollbar-in-IE-tp4670222.html
> Sent from the Users forum mailing list archive at Nabble.com.
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>


AutoComplete suggestion list disappear when I click on scrollbar in IE

2015-04-08 Thread ravala
Hi, 

I am using Wicket's(version ) AutoCompleteTextField in my application to a
form component,
when I type something I will get the suggestion list, the suggestion list
container width
is 300px, so when the text inside the container exceeds the width of the
container,
we will get a horizontal scroll bar for the suggestion list, the problem is
when I scroll
to view the text the suggestion list is disappearing. This happens in all IE
browser
versions IE8, IE9, IE10 and IE11. I am using wicket version 6.19.
I have attached the image to show suggestion list with scroll bar.
<http://apache-wicket.1842946.n4.nabble.com/file/n4670222/autocompleteScroll.png>
 

Regards
Ramesh V.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/AutoComplete-suggestion-list-disappear-when-I-click-on-scrollbar-in-IE-tp4670222.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Suggestion list

2010-03-10 Thread Josh Chappelle
Now I see the AutoCompleteSettings class. It looks like it has a
showListOnEmptyInput boolean in it. I'll give that a try.

Thanks a bunch!

Josh

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Wednesday, March 10, 2010 3:46 PM
To: users@wicket.apache.org
Subject: Re: Suggestion list

wicket ships with
org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextF
ield

-igor

On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle 
wrote:
> Hi,
>
>
>
> I am trying to find a suggestion list component that works like a
> DropDownChoice but can also be edited like a TextField. I tried to use the
> wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to
> have some bugs because the model value was not binding to my object. In
fact
> a lot of components in wicketstuff-dojo seem to be riddled with bugs which
> must be why it is dead and no one uses it.
>
>
>
> Can anyone suggest a replacement javascript library that has wicket
> integration that would achieve the suggestion list functionality?
>
>
>
> Thanks,
>
>
>
> Josh
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Suggestion list

2010-03-10 Thread Igor Vaynberg
AutoCompleteSettings.setShowListOnEmptyInput(true) ?

-igor

On Wed, Mar 10, 2010 at 1:54 PM, Josh Chappelle  wrote:
> The AutoCompleteTextField is great but the problem is that the user has to
> start typing before they can see the list of options which means they
> already have to have an idea of some of the choices. For my particular use
> case I need the user to be able to see the choices first.
>
> If there is a way to easily override something in AutoCompleteTextField that
> would be perfect.
>
> Thanks,
>
> Josh
>
> -Original Message-
> From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com]
> Sent: Wednesday, March 10, 2010 3:46 PM
> To: users@wicket.apache.org
> Subject: Re: Suggestion list
>
> wicket ships with
> org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextF
> ield
>
> -igor
>
> On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle 
> wrote:
>> Hi,
>>
>>
>>
>> I am trying to find a suggestion list component that works like a
>> DropDownChoice but can also be edited like a TextField. I tried to use the
>> wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to
>> have some bugs because the model value was not binding to my object. In
> fact
>> a lot of components in wicketstuff-dojo seem to be riddled with bugs which
>> must be why it is dead and no one uses it.
>>
>>
>>
>> Can anyone suggest a replacement javascript library that has wicket
>> integration that would achieve the suggestion list functionality?
>>
>>
>>
>> Thanks,
>>
>>
>>
>> Josh
>>
>>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
> For additional commands, e-mail: users-h...@wicket.apache.org
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



RE: Suggestion list

2010-03-10 Thread Josh Chappelle
The AutoCompleteTextField is great but the problem is that the user has to
start typing before they can see the list of options which means they
already have to have an idea of some of the choices. For my particular use
case I need the user to be able to see the choices first.

If there is a way to easily override something in AutoCompleteTextField that
would be perfect.

Thanks,

Josh

-Original Message-
From: Igor Vaynberg [mailto:igor.vaynb...@gmail.com] 
Sent: Wednesday, March 10, 2010 3:46 PM
To: users@wicket.apache.org
Subject: Re: Suggestion list

wicket ships with
org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextF
ield

-igor

On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle 
wrote:
> Hi,
>
>
>
> I am trying to find a suggestion list component that works like a
> DropDownChoice but can also be edited like a TextField. I tried to use the
> wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to
> have some bugs because the model value was not binding to my object. In
fact
> a lot of components in wicketstuff-dojo seem to be riddled with bugs which
> must be why it is dead and no one uses it.
>
>
>
> Can anyone suggest a replacement javascript library that has wicket
> integration that would achieve the suggestion list functionality?
>
>
>
> Thanks,
>
>
>
> Josh
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Suggestion list

2010-03-10 Thread Igor Vaynberg
wicket ships with
org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextField

-igor

On Wed, Mar 10, 2010 at 1:44 PM, Josh Chappelle  wrote:
> Hi,
>
>
>
> I am trying to find a suggestion list component that works like a
> DropDownChoice but can also be edited like a TextField. I tried to use the
> wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to
> have some bugs because the model value was not binding to my object. In fact
> a lot of components in wicketstuff-dojo seem to be riddled with bugs which
> must be why it is dead and no one uses it.
>
>
>
> Can anyone suggest a replacement javascript library that has wicket
> integration that would achieve the suggestion list functionality?
>
>
>
> Thanks,
>
>
>
> Josh
>
>

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Suggestion list

2010-03-10 Thread Josh Chappelle
Hi,

 

I am trying to find a suggestion list component that works like a
DropDownChoice but can also be edited like a TextField. I tried to use the
wicketstuff-dojo component called DojoHtmlSuggestionList but it appears to
have some bugs because the model value was not binding to my object. In fact
a lot of components in wicketstuff-dojo seem to be riddled with bugs which
must be why it is dead and no one uses it.

 

Can anyone suggest a replacement javascript library that has wicket
integration that would achieve the suggestion list functionality?

 

Thanks,

 

Josh



Is there a way to trigger the suggestion list of an AutoCompleteTextField by clicking another button

2008-11-07 Thread Stachow, Darius
Hi,

 

I'm using Wicket 1.3.4 and I have a question regarding the
AutoCompleteTextField. 

 

You can let the suggestion list pop up by pressing keys inside the text
field. 

That works fine but I need to trigger the suggestion list additionally
through another component that in my case would be an image (button).

The image button will be placed next to the text field and a click on it
should open the suggestion list of the autocomplete text field.

I already tried to find a way to realize that but I had no success so
far :-(

 

Is there a way to do this?

 

Many thanks in advance!

 

Best regards

Darius Stachow