nicegui

How can i make button in table cell using NiceGui library?

How can i make button in table cell using NiceGui library? Question: from nicegui import ui Called when a button in a cell is clicked: def buttonClick(*args): print(args) table = ui.table({ ‘columnDefs’: [ {‘headerName’: ‘Task id’, ‘field’: ‘taskId’}, This is how i am trying to add a button to the table: { ‘headerName’: "Info", ‘field’: …

Total answers: 1