Table:row conditional formating

How can i change the border color for a selected row?


for example, i would like to change the border color to black for the selected row, insted of green

Hi @daveAS, you should be able to change the color of your selected row's border by using a bit of custom CSS. On the top right of your app, you can click the 3-dots > Scripts and Styles > CSS. From there you can input any CSS you like. In your case, since your table is names 'table2', you can input:

.selected{
  border: 10px black solid;
}

Hope this works for you!