Is there a way to control the datagrid header?
At least to hide it?
KR
Roland
Is there a way to control the datagrid header?
At least to hide it?
KR
Roland
Hi,
DataGrid header can be hidden using styles, e.g.:
<dataGrid id="usersDataGrid"
...
classNames="no-header">
Styles implementation:
vaadin-grid.no-header::part(header-cell) {
display: none;
}
Could you please be more specific what do you mean by control?
Regards,
Gleb