Skip to content
Snippets Groups Projects
Commit 3d6da973 authored by izabel's avatar izabel
Browse files

[LMS-1824] automatic resizing of columns with tooltip (handle images in the column)

SVN: 18583
parent 03fe16f9
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,11 @@ class ExtendedGridView extends GridView ...@@ -94,7 +94,11 @@ class ExtendedGridView extends GridView
{ {
if (Element.is(n)) if (Element.is(n))
{ {
Element.as(n).getStyle().setWidth(0, com.google.gwt.dom.client.Style.Unit.PX); com.google.gwt.dom.client.Element e = Element.as(n);
if (e.getTagName().equalsIgnoreCase("img") == false)
{
e.getStyle().setWidth(0, com.google.gwt.dom.client.Style.Unit.PX);
}
} }
} }
Element element = (Element) td.getFirstChildElement(); Element element = (Element) td.getFirstChildElement();
......
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