```scrollpane { tableview(download...
# tornadofx
v
Copy code
scrollpane {
                tableview(downloads.asObservable()) {
                    isEditable = true
                    column("Emulator", EmulatorDownload::name)
                    column("Version", EmulatorDownload::version)
                    column("Status", EmulatorDownload::status).cellFormat {
                        if(it == "NOT_PRESENT"){
                            button("Download") {  }
                        }else{
                            it
                        }
                    }
                }
            }