I have a Html.Kendo().Grid ASP.Net core 7.0 project. The grid displays several columns, some of them have big text. I want the text to not wrap. The text should show '...' in the end if the text is longer than the grid column.
I have added
.k-grid td {
white-space: nowrap;
}
but still the text wraps as shown in the attached image.