• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

TreeItem renders with extra line in IE8

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
When I construct tree with TreeItem that is the panel or even simple HTML, the IE8 renders each TreeItem with extra line. Tree occupies too much space and does not look good.

root

text0 link0

text1 link1

text2 link2

text3 link3

text4 link4

It works fine with IE9, Firefox 3.6, Google Chrome, Safari 5

root
text0 link0
text1 link1
text2 link2
text3 link3
text4 link4

My application runs in lock-down clinical environment that has only IE7 and IE8 browsers. Please help me to fix the problem.

Here is the code sample:

public class TreeSample implements EntryPoint {

public void onModuleLoad() {

TreeItem root = new TreeItem("root");

for (int i=0; i<5; i++){

HTMLPanel panel = new HTMLPanel("<span id='text'></span>" +"<span id='link'></span>");
InlineHTML text = new InlineHTML("text"+i+" ");
Anchor link = new Anchor("link"+i);
panel.add(text, "text");
panel.add(link, "link");

root.addItem(new TreeItem(panel));
}

root.setState(true);

// Create a tree with a few items in it.
Tree t = new Tree();
t.addItem(root);

// Add it to the root panel.
RootPanel.get().add(t);

}
}


Thanks for the help,
Dmitry
 
Being a smart alec beats the alternative. This tiny ad knows what I'm talking about:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic