css - A border issue of suggestboxPopup in GWT -


i using suggestbox in gwt.i inherit standard theme suggestionbox.gwt.xml as

  <inherits name='com.google.gwt.user.theme.standard.standard'/> 

so using default standard css widget suggestbox , making border through image hborder.png,vborder.png etc..i want remove css not working.

.gwt-suggestboxpopup{   border  :    1px solid #000000; } 

so how can solve issue.please me. rahul

the class used popup defaultsuggestiondisplay default suggestbox. uses decoratedpopuppanel can see in suggestbox.java around line 392.

to avoid "heavy" border, have create/override suggestiondisplay uses non-decorated popuppanel , pass suggestbox trough constructor

   public suggestbox(suggestoracle oracle, textboxbase box,suggestiondisplay suggestdisplay);  

say, "border" not sufficient, because decoratedpopuppanel uses multiple cells set borders, seen in css. can update css directly apply project, suggestbox not seems handle resource bundle directly.


Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -