Tagged Questions
The yui-autocomplete tag has no wiki summary.
2
votes
3answers
878 views
yahoo autocomplete
I'm kind of like stuck trying to implement YUI autocomplete textbox. here's the code:
<div id="myAutoComplete">
<input id="myInput" type="text" />
<div ...
1
vote
0answers
119 views
YUI AutoComplete itemSelect - how do I know which key was pressed to do selection?
I have a handler for itemSelectEvent that gets called when an option is selected from the drop down. According to YUI documentation, this is fired when an item is selected via mouse click, ENTER key, ...
0
votes
0answers
44 views
Expand YUI Autocomplete when down-arrow key is pressed
I have an autocomplete which returns results from a list of company names. What I'd like to have it do is expand and display all companies in the list when the down-arrow key is pressed.
I initially ...
0
votes
1answer
55 views
How to close a YUI autocomplete box by clicking an external link
I have an autocomplete box which I would like to be able to close when the user clicks a link. I think I would just have to somehow "get" the autocomplete, then use the .collapseContainer method.
I ...
0
votes
2answers
168 views
Only show YUI autocomplete footer when there are 5 results
I would like the autocomplete to display a footer which says Displaying top 5 results only when there are 5 results actually being displayed.
So far, I have it set up so that it won't display if at ...
0
votes
1answer
249 views
yui-autocomplete
Two questions regarding yui autocomplete:
Is there a way to make yui autocomplete mouse selection and keyboard up/down selection create only one selection at any time ?
Also is there any way to ...
0
votes
2answers
143 views
YUI AutoComplete: how do you get it to expand when the input is selected?
I've got a YUI AutoComplete control, works great. Except that I'd like it to expand the list of suggestions as soon as the user selects the input box. How do I make that happen?
Right now expansion ...
0
votes
1answer
512 views
Dynamically added JavaScript not finding dynamically added fields in IE
I have a table which has a button to "Add Rows". This button adds a row dynamically with JQuery. It works by copying the first ... and then replacing all the id=".." with an incremented number.
The ...