And on another note.. `class MasterDetailView(mast...
# tornadofx
d
And on another note..
class MasterDetailView(master: UIComponent, detail: UIComponent) : Fragment() {..}
i want to initate via the find method - i tried the following but that does not work like i expect it to work.. what am i missing?
Copy code
val master = find<ProjectStructureFragment>()
val detail = find<ProjectStructureEditorView>()
workspace.dock(find<MasterDetailView>("master" to master, "detail" to detail))
Thanks in advance
okay i think thats just not possible like that following the exmaple from Edvin (great answer by the way!) Stackoverflow