I am facing a problem that I can\'t see the drop down list of the GWT Suggestbox. I am adding a GWT Suggestbox into SmartGWT\'s VLayout. Then I can see the textbox of the Su
This may be zIndex related, but there's no reason to use GWT's SuggestBox and run into problems like this. Use SmartGWT's ComboBoxItem. If you don't want a drop-down control to appear at the end of the text entry area, call setShowPickerIcon(false).
With the help from Alain, I add .gwt-SuggestBoxPopup {z-index: 1000000;}
into my CSS. Then I solve the problem.
It would be easier with little bit of code. Before stopping to mix Smartgwt with Gwt I integrated some code which was using GWt suggestBox and it was working.... (Why don't you use the Smartgwt selectitem it does the job?) Regards
Alain