Announcement

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

    #16
    You need to be more specific. Do you want the tabs themselves to move to a different position or do you want the entire tabset (the container) to move to a different position? You can adjust tabs using TabSet.setTabBarAlign(Side.RIGHT); See javadocs and http://www.smartclient.com/smartgwt/showcase/#layout_tabs_align, if you want to adjust the container then you can add these two lines to your code:
    wrapper.setWidth(580);
    wrapper.setLayoutAlign(Alignment.RIGHT);

    Comment


      #17
      Hi

      I started playing with Layout,Canvas. But I observer one point. If I'm keep the labels inside smartGWT HLayout, I'm not able to select text from the label or html components. Is there any workaround.

      Please let me know..

      -raghu

      Comment


        #18
        setCanSelectText(true)

        Comment


          #19
          I'm having a very similar issue. I'm trying to create a TabSet that I can embed in a div in an existing page and only the first Tab is being rendered. Is there a way to use TabSet with a div (RootPanel.get("mydiv").add(tabset) instead of just calling draw()?

          Comment

          Working...
          X