gwt-material
gwt-material copied to clipboard
Problem: tooltip fails to show in a listBox
Hi there,
I have a problem with the tooltip. I tryed to add Option elements with tooltip in the MaterialListBox, but they didn't show up.
@UiField
public MaterialListBox logList;
private void init(){
logList.clear();
for(Entry<String,String> entry : entrySet){
Option option = new Option(entry.getValue());
option.setTooltip(entry.getKey());
logList.add(option);
Also used MaterialTooltip but the same.
Currently tooltips are not well supported on select boxes because Materialize as it's own way to render it's items. Alternatively you can use MaterialDropdown and each link elements you can add a tooltip. We might revisit this on 2.3 for feature request