Hi,
I created a Toolbar (code below) and am not able
put the CSS for it to be transparent. What
I like this?
ToolbarMenuButton button2 = new ToolbarMenuButton("Split
Button", splitMenu);
toolbar.addButton(button2);
toolbar.addSeparator();
ToolbarButton toggleButton = new ToolbarButton("Toggle Me");
toggleButton.setEnableToggle(true);
toggleButton.setPressed(true);
QuickTipsConfig tipsConfig = new QuickTipsConfig();
tipsConfig.setText("This is a quicktip with a title");
tipsConfig.setTitle("Tip Title");
toggleButton.setTooltip(tipsConfig);
ToolbarButton iconOnly = new ToolbarButton();
iconOnly.setIcon("images/add-feed.gif");
iconOnly.setCls("x-btn-icon");
iconOnly.setTooltip("<b>Quick Tips</b><br/>Icon only button
with tooltip");
toolbar.addButton(iconOnly);
toolbar.addSeparator();
toolbar.addButton(toggleButton);
toolbar.addSeparator();
ToolbarTextItem ti = new ToolbarTextItem("Text Item");
toolbar.addItem(ti);
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---