Use byte string filters for row grid too

if master view needs them at all, chances are they should apply to row grid as
well as main grid
This commit is contained in:
Lance Edgar 2020-06-24 10:53:43 -05:00
parent c7c3dea6b2
commit c1a2bb978c

View file

@ -468,6 +468,7 @@ class MasterView(View):
'model_class': self.model_row_class, 'model_class': self.model_row_class,
'width': 'full', 'width': 'full',
'filterable': self.rows_filterable, 'filterable': self.rows_filterable,
'use_byte_string_filters': self.use_byte_string_filters,
'sortable': self.rows_sortable, 'sortable': self.rows_sortable,
'pageable': self.rows_pageable, 'pageable': self.rows_pageable,
'default_pagesize': self.rows_default_pagesize, 'default_pagesize': self.rows_default_pagesize,