Announcement

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

    Dynamically retrieve the contents of a tab on a TabSet ?

    Hello,

    I'd like to dynamically retrieve the contents of a tab on a TabSet?

    When I make a :

    Code:
     
    Tab tab = new Tab ();
    tab.setPane (any layout);
    How I do to retrieve the value in the pane (getPane() not exist ?!?) ?

    Thanks !

    #2
    Did you try keeping a reference to the layout you put in the pane? I haven't tried it but you should be able change or replace the pane contents.

    Eric

    Comment


      #3
      No I did not try to keep a reference to the layout. How I do it?

      Thanks

      Comment


        #4
        Some thing like this.

        Code:
        Tab tab = new Tab();
        VLayout layout = new VLayout();
        tab.setPane(layout);

        Comment

        Working...
        X