!7 sclass FollowUp > DynModule { visualize { L data = map(serverTelegramLog(), func(TelegramMsg msg) -> L { ll(escapeNewLines(msg.text), false) }); final L cols = ll("Text", "Is Follow-Up"); JTable table = sexyTable(); Pair p = fillTableWithData_makeData(data, cols); setTableModel(table, DefaultTableModel(p.a, p.b) { public Class getColumnClass(int column) { return or(_getClass(getValueAt(0, column)), S.class); } public bool isCellEditable(int rowIndex, int columnIndex) { ret columnIndex == l(cols)-1; } }); ret table; } }