Disable selecting for a table

@wfisher @Greg - in the meanwhile, a little hack that could help: disabling the highlighted color via CSS. This should do the trick:

<style>
  div.rt-tr.table-row.selected {
    background: none;
  }
</style>

You can put this in a text component, or make it global (How to write custom CSS in Retool!)

1 Like