aayush
08/24/2017, 12:15 PMclass MainView : View() {
    override val root = gridpane()
    val tv: TabbedView by di("tabView")
    val sv: ShortcutView by di("shortcutView")
    init {
        with(root) {           
      
            add(tv.root, 0, 0)
            add(sv.root, 1, 0)
            isGridLinesVisible=true
            columnConstraints.addAll(
                    newColConstraints(05.0), newColConstraints(15.0), newColConstraints(70.0))
            rowConstraints.addAll(newRowConstraints(100.0))
        }
    }
}