DataGrid Column Header

Is it possible to wrap the header text of the column in the Grid and keep the feature icons (Sort, Filter) on the left and the right. If I use the HeaderTemplate and then wrap the text the icons also wrap.

You can control the column title using rz-column-title CSS:

Putting this inside site.css works for me.

.rz-column-title-content {
white-space: normal !important;
word-wrap: break-word !important;
}

image

1 Like