Hi
For some reason since this morning, the table component is not clickable even it is showing enter a value.
Hello @Tan_Lian_Ping ,
If your Retool table component is not clickable even though it's displaying data, here are some things to check:
- Interactivity Settings – Ensure "Disable row selection" and "Read-only" are unchecked.
- Click Events – Debug
onRowClick
oronCellClick
withconsole.log(event)
. - Console Errors – Open DevTools (F12) > Console for JavaScript errors.
- Data Source – Log data with
console.log(tableName.data)
to ensure it's populated. - Reset Table – Remove and re-add the table component.
- Overlapping Elements – Check DevTools > Elements for hidden divs blocking clicks.
2 Likes