<@U0F3291QE> I want to add tabs to tabpane dynami...
# tornadofx
a
@edvin I want to add tabs to tabpane dynamically from another view.
Copy code
class TabbedView : View() {

    var tabs : TabPane by singleAssign()

    override val root = hbox()

    init {
        with(root) {
            tabs = tabpane {

            }
        }


    }
}
This is my tabview and i want to add tabs from a button click from another view ? I saw this in javafx ( https://community.oracle.com/thread/2535484 ) but cannot get how to do it in tornado?