вот мое определение MudDataGrid
Код: Выделить всё
Bookings
У меня есть функция, которая отвечает за раскрашивание строк
Код: Выделить всё
private Func _rowStyleFunc => (x, i) =>
{
string style = string.Empty;
if(x.Cancelled)
{
style += "background-color: #FF0000; color: white !important;";
}
return style;
};

Подробнее здесь: https://stackoverflow.com/questions/786 ... oesnt-work