GWT ListBox Styling
I wish to ch开发者_运维知识库ange the way ListBox looks using CSS
- Change the border color - Tried using the usual border-color:red. Worked on Firefox. No effect on IE Still the standard blue color
- Change the Color of the arop down arrow. No idea how to go about doing it.
Any idea how do i do this
Thanks J
Check the rendered html in firebug and add appropriate css in the index.html (or the page where you are including the gwt module). In the GWT code add the css class in the listbox by using
listBox.setStyleName("the classes defined in the css for list box")
精彩评论