On Oct 19, 7:35 am, "Ca-Phun Ung" <[EMAIL PROTECTED]> wrote: > Nice work :)
Thanks. :-) > - When you leave two drop downs open and use the UP DOWN keys they both > change; I've changed it so only one drop-down can be open at once. Having multiples would probably cause problems with some of the other event- handling as well. > - When pushing DOWN on the last element the selection goes to the first > element, which is nice but when pushing UP on the first element one would > expect the same to occur. Fixed. Apparently JavaScript modulus doesn't work with negative numbers. > - Combobox from select example: if you click on the input box it shows the > dropdown but when you select one from the list it doesn't make the > selection. > - Selection only seems to work when activated from the image button - should > also be able to select from the list via the input box. These are the same bug, right? When clicking on either "Combobox from select" or "Event Handling", selection by mouse didn't change the input element? Anyway, seem to have fixed it, though I couldn't reproduce the problem in unit tests. I think it was an interaction between the onblur and onclick handlers; I updated the blur handler and the demo seems to work now. > - Combobox from select example: If you type "p" and ENTER you get "pear" but > it should be "pears". > This is a feature, not a bug. It's possible to have different values for the "value" of the combobox (which is shown in the text box) vs. the menu display. When auto-filled from a select, it picks up the values from the appropriate attribute of the option tag, and the display from the text. A similar effect is possible using listHTML on the array data option. I've updated the demo page with a more thorough explanation of this. - Jonathan --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
