Hot Actress Namitha at Zouk pub in Hyderabad Hot Pics

http://depositpics.com/show.php?img=2995_namitha0007.jpg.html
http://depositpics.com/show.php?img=2994_namitha0006.jpg.html
http://depositpics.com/show.php?img=2993_namitha0005.jpg.html
http://depositpics.com/show.php?img=2992_namitha0004.jpg.html
http://depositpics.com/show.php?img=2991_namitha0003.jpg.html
http://depositpics.com/show.php?img=2990_namitha0002.jpg.html
http://depositpics.com/show.php?img=2989_namitha0001.jpg.html

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jenncam" group.
To post to Johan Compagner
>
> We have a form with multiple AutoCompleteTextFields in it. If the user enters 
> text in text field A, and moves focus to text field B immediately (within the 
> throttle delay) e.g. using tab, the autocompletion list appears in text field 
> A even though it doesn't have the focus anymore.
> Looking at wicket-autocomplete.js, the fix should be pretty straightforward, 
> i.e. just check whether the input still has focus at the time when the 
> autocompletion list is shown (in doUpdateChoices(resp)). This works for me:
> --- 
> wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/wicket-autocomplete.js
>  (revision 694678)
> +++ 
> wicket-extensions/src/main/java/org/apache/wicket/extensions/ajax/markup/html/autocomplete/wicket-autocomplete.js
>  (working copy)
> @@ -304,9 +304,9 @@
>  
>      function doUpdateChoices(resp){
>      
> -     // check if the input hasn't been cleared in the meanwhile
> +     // check that the input still has focus and hasn't been cleared in the 
> meanwhile
>       var input=wicketGet(elementId);
> -             if (!cfg.showListOnEmptyInput && (input.value==null || 
> input.value=="")) {
> +             if ((Wicket.Focus.getFocusedElement() != input) || 
> (!cfg.showListOnEmptyInput && (input.value==null || input.value==""))) {
>                       hideAutoComplete();
>                       return;
>               }

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to