I have this radzen data grid component which show filter boxes, when there is a numeric value up and down arrows are displayed, can I remove them using radzen or do I need to du it with js/style?
<RadzenDataGrid AllowFiltering="true"
TItem="OrdersByCustomerDto"
AllowColumnResize="true"
AllowAlternatingRows="false"
Style=""
AllowVirtualization="true"
AllowSorting="true"
PageSize="10"
AllowPaging="true"
FilterMode="FilterMode.Simple"
PagerHorizontalAlign="HorizontalAlign.Left"
ShowPagingSummary="true"
Data="@filteredOrders"
ColumnWidth="100px"
LogicalFilterOperator="LogicalFilterOperator.Or">
<Columns>
</Columns>
</RadzenDataGrid>