Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Tabset and background

    http://forums.smartclient.com/showthread.php?t=3408

    indicates there is a PaneContainer however the smartgwt api doesn't provide access to it, only its overflow. How do I set the background of the TabSet paneContainer?

    #2
    You do need to use SmartClient skinning APIs to affect this element for now (or use paneContainerProperties via JSNI).

    Comment


      #3
      Code:
      TabSet tabs=new TabSet();
      tabsPanel.setPaneContainerClassName("tabs");
      CSS
      Code:
      .tabs {
       background-image: url("images/tabs-background.jpg");
       background-position: center;
       background-repeat: no-repeat;
       }

      Comment

      Working...
      X