<@U0F3291QE> <https://cl.ly/2W053C1p2X0Z> I impl...
# tornadofx
a
@edvin https://cl.ly/2W053C1p2X0Z I implemented this view, I created a tree table view. And passed empty strings to column fields like this
Copy code
Liabilities("Capital Account", "", "12121212.00",
                        listOf(
                                Liabilities("Sandeep Kumar", "123561", "")
                        )))

class Liabilities(
        val particulars: String,
        val amount1: String,
        val amount2: String,
        val voucherList: List<Liabilities>? = emptyList())
And populated the data in TreeTableView. Is this the correct way?