Return-Path: X-Original-To: apmail-wicket-commits-archive@www.apache.org Delivered-To: apmail-wicket-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 99817C401 for ; Wed, 26 Jun 2013 08:15:24 +0000 (UTC) Received: (qmail 12525 invoked by uid 500); 26 Jun 2013 08:15:23 -0000 Delivered-To: apmail-wicket-commits-archive@wicket.apache.org Received: (qmail 12437 invoked by uid 500); 26 Jun 2013 08:15:22 -0000 Mailing-List: contact commits-help@wicket.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@wicket.apache.org Delivered-To: mailing list commits@wicket.apache.org Received: (qmail 12412 invoked by uid 99); 26 Jun 2013 08:15:21 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 26 Jun 2013 08:15:21 +0000 Date: Wed, 26 Jun 2013 08:15:21 +0000 (UTC) From: "Sven Meier (JIRA)" To: commits@wicket.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Resolved] (WICKET-5130) AutoCompleteTextField hides combo boxes - remove setting MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/WICKET-5130?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Sven Meier resolved WICKET-5130. -------------------------------- Resolution: Fixed fix for IE<7 is now removed > AutoCompleteTextField hides combo boxes - remove setting > -------------------------------------------------------- > > Key: WICKET-5130 > URL: https://issues.apache.org/jira/browse/WICKET-5130 > Project: Wicket > Issue Type: Task > Affects Versions: 6.6.0 > Environment: tested on Windows 7, IE9, valid also for IE7 and IE8 > Reporter: Betlista > Assignee: Sven Meier > Priority: Minor > Labels: autocomplete, autocompletetextfield > Fix For: 7.0.0 > > Attachments: ScreenShot326.png, ScreenShot327.png, ScreenShot328.png > > > When I have AutoCompleteTextField in form and there are DropDowns below the autocomplete text field, AutoCompleteTextField drop down hides components below. > Steps to simulate the behaviour: > 1.) I created maven project > mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=6.6.0 -DgroupId=net.betlista -DartifactId=bugs-dropdown -DarchetypeRepository=https://repository.apache.org/ -DinteractiveMode=false > 2.) in pom.xml I enabled extensions > 3.) I changed getHomePage() in WicketApplication application to show my new test page > 4.) page markup is > > > > > Insert title here > > >
>
>
>
>
>
> > > 5.) Java class for page is > package net.betlista; > import java.util.Iterator; > import java.util.LinkedList; > import java.util.List; > import org.apache.wicket.extensions.ajax.markup.html.autocomplete.AutoCompleteTextField; > import org.apache.wicket.markup.html.WebPage; > import org.apache.wicket.markup.html.form.DropDownChoice; > import org.apache.wicket.markup.html.form.TextField; > public class AutoCompleteAndDropDownTestPage extends WebPage { > public AutoCompleteAndDropDownTestPage() { > add(new AutoCompleteTextField("auto") { > @Override > protected Iterator getChoices(final String input) { > return getNewList(20).iterator(); > } > }); > add(new DropDownChoice("drop1", getNewList(15))); > add(new DropDownChoice("drop2", getNewList(10))); > add(new TextField("text")); > } > private static List getNewList(final int upTo) { > final LinkedList list = new LinkedList(); > for (int i = 0; i < upTo; i++) { > list.add(i); > } > return list; > } > } -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators For more information on JIRA, see: http://www.atlassian.com/software/jira