Skip to content
Snippets Groups Projects
Commit 00e2fcba authored by buczekp's avatar buczekp
Browse files

minor: added tooltips to all filters

SVN: 15019
parent 65e0bfc6
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,7 @@ public class ListColumnFilterWidget<T> extends ComboBox<ModelData> implements
setValidateOnBlur(false);
String label = filteredField.getHeader();
setEmptyText(label);
setToolTip(label);
setTemplate(GWTUtils.getTooltipTemplate(MODEL_DISPLAY_KEY, ModelDataPropertyNames.TOOLTIP));
}
......
......@@ -49,6 +49,7 @@ public class TextColumnFilterWidget<T/* entity */> extends StoreFilterField<Mode
setWidth(100);
String label = filteredField.getHeader();
setEmptyText(label);
setToolTip(label);
}
public String getFilteredColumnId()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment