I encountered an issue when attempting to hide a PropertyColumn on small screens in Blazor 8 using the regular Bootstrap 5 method. By adding
Class="d-sm-none d-md-block"
to the QuickGrid component's PropertyColumn, it seems that the Bootstrap class interferes with QuickGrid's CSS, causing the property to be displayed vertically instead of horizontally.
<PropertyColumn Property="@(p => p.BrokerName)" Title="Broker" Sortable="true" Class="d-sm-none d-md-block" />
<PropertyColumn Property="@(p => p.Symbol)" Title="Symbol" Sortable="true" Class="d-sm-none d-md-block" />
As a result, Symbol ends up underneath BrokerName rather than beside it.
I am wondering if there is a workaround to hide PropertyColumns in QuickGrid without conflicting with Bootstrap. I would prefer not to create custom media queries...
Thanks in advance!
Dennis