Is there a way to make an entire row in a table appear crossed out? I attempted using the text-decoration
property, but it only impacted the text itself.
.v-table-row.v-table-row-highlight-red,
.v-table-row-odd.v-table-row-highlight-red {
background-color: #ff0000;
white-space: pre-wrap !important;
text-decoration: line-through;
}
Any suggestions on how to strike through the complete row?
Currently, my table code generator is configured as follows:
table.setCellStyleGenerator((source, itemId, propertyId) - > {
return "highlight-red";
});