Combobox scrolling problem

When i click combobox then scroll down to the page, dropdown of combobox goes down too. How can i fix this problem?

Are you referring to Framework ComboBox? In case yes, this is a known issue.

https://github.com/vaadin/framework/issues/5043

There is workaround available

https://vaadin.com/directory#!addon/comboboxpopuptracker-add-on

If you are referring Elements vaadin-combo-box, I am not sure, but it could be that there is the same issue too.

Thank you! Demo is cool, that’s what I need. But I received the following errors when I added addon to my project:

[ERROR]
 ��� 24, 2017 9:09:25 PM java.util.prefs.WindowsPreferences <init>
[ERROR]
 WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0x80000002. Windows RegCreateKeyEx(...) returned error code 5.
[INFO]
 Compiling module AppWidgetset
[INFO]
    Tracing compile failure path for type 'org.vaadin.patrik.addon.client.ComboBoxPopupTrackerConnector'
[INFO]
       [ERROR]
 Errors in 'jar:file:/C:/Users/WinUserZ/.m2/repository/org/vaadin/patrik/addon/ComboBoxPopupTracker/0.2/ComboBoxPopupTracker-0.2.jar!/org/vaadin/patrik/addon/client/ComboBoxPopupTrackerConnector.java'
[INFO]
          [ERROR]
 Line 67: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 89: SuggestionPopup cannot be resolved to a type
[INFO]
          [ERROR]
 Line 30: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 18: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 31: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 19: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 87: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 39: SuggestionPopup cannot be resolved to a type
[INFO]
          [ERROR]
 Line 88: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 11: The import com.vaadin.client.ui.VFilterSelect cannot be resolved
[INFO]
          [ERROR]
 Line 44: SuggestionPopup cannot be resolved to a type
[INFO]
          [ERROR]
 Line 31: SuggestionPopup cannot be resolved to a type
[INFO]
          [ERROR]
 Line 73: SuggestionPopup cannot be resolved to a type
[INFO]
          [ERROR]
 Line 68: VFilterSelect cannot be resolved to a type
[INFO]
          [ERROR]
 Line 90: SuggestionPopup cannot be resolved to a type
[INFO]
    [ERROR]
 Aborting compile due to errors in some input files
[INFO]
 ------------------------------------------------------------------------
[INFO]
 BUILD FAILURE
[INFO]
 ------------------------------------------------------------------------
[INFO]
 Total time: 40.838 s
[INFO]
 Finished at: 2017-08-24T21:09:58+04:00
[INFO]
 Final Memory: 20M/352M
[INFO]
 ------------------------------------------------------------------------
[ERROR]
 Failed to execute goal com.vaadin:vaadin-maven-plugin:8.1.1:compile (default) on project TestVaadin: Command [[
[ERROR]
 C:\Program Files\Java\jdk1.8.0_144\jre\bin\java -Xmx1G -Dgwt.persistentunitcache=false com.google.gwt.dev.Compiler -logLevel INFO -style OBF -war "C:\Users\WinUserZ\Desktop\Проект FirstLine\FirstLineSocialInfoProject\ProjectRelease\TestVaadin\target\classes\VAADIN\widgetsets" -localWorkers 4 -failOnError -XfragmentCount -1 -sourceLevel auto -gen "C:\Users\WinUserZ\Desktop\Проект FirstLine\FirstLineSocialInfoProject\ProjectRelease\TestVaadin\target\.generated" AppWidgetset
[ERROR]
 ]] failed with status 1
[ERROR]
 -> [Help 1]

[ERROR]
 
[ERROR]
 To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR]
 Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
 
[ERROR]
 For more information about the errors and possible solutions, please read the following articles:
[ERROR]
 [Help 1]
 http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException

I’m using vaadin 8.1.1.

The Add-on does not work with Vaadin 8. But there is no reason to worry. The bug I referred has now been fixed with solution similar to the add-on and it will be included in some of the upcoming versions of Vaadin 8 soon.

Thank you!

Tatu Lund:
The Add-on does not work with Vaadin 8. But there is no reason to worry. The bug I referred has now been fixed with solution similar to the add-on and it will be included in some of the upcoming versions of Vaadin 8 soon.

I am facing the same issue. But scenario is different in my case. My application is based on vaadin 8.4.5, but the combobox component is used from vaadin-compatibility component v8.4.5. Since the vaadin-compatibility package uses old v7 combobox component, the problem still persists. How do I solve this issue. Note that, I can’t remove the vaadin-compatibility(server/client) jars from my application, because it is the requirement of my application. I know this bug was fixed in later version of vaadin. But I guess this fix wasn’t for vaadin-compatibility components. For code details and information please see the thread
https://vaadin.com/forum/thread/17168499/combobox-popup-floats-while-scrolling
Please help !!!