Hello,
Using Smart GWT 3.1p, with GWT 2.5.1
How do I set the background of the tab. I see the setBackground which changes the background of the canvas on the tab. if I have a new tab("home"). I want to change
the background of the "tab" part behind the "home".
Thanks,
Evan
PS Here is what I tried, which does change the background of the canvas.
HTMLPane htmlPane = new HTMLPane();
htmlPane.setAutoDraw(false);
htmlPane.setContentsURL("./html/Home/index.html");
htmlPane.setContentsType(ContentsType.PAGE);
htmlPane.setBackgroundColor("#BFFF9F");
htmlPane.setWidth100();
htmlPane.setHeight100();
htmlPane.setPadding(0);
tabHome.setPane(htmlPane);
tabHome.setPaneMargin(0);
Using Smart GWT 3.1p, with GWT 2.5.1
How do I set the background of the tab. I see the setBackground which changes the background of the canvas on the tab. if I have a new tab("home"). I want to change
the background of the "tab" part behind the "home".
Thanks,
Evan
PS Here is what I tried, which does change the background of the canvas.
HTMLPane htmlPane = new HTMLPane();
htmlPane.setAutoDraw(false);
htmlPane.setContentsURL("./html/Home/index.html");
htmlPane.setContentsType(ContentsType.PAGE);
htmlPane.setBackgroundColor("#BFFF9F");
htmlPane.setWidth100();
htmlPane.setHeight100();
htmlPane.setPadding(0);
tabHome.setPane(htmlPane);
tabHome.setPaneMargin(0);
Comment