Fix 'checkboxes' attribute for master view grids.
This commit is contained in:
parent
9e3b2a646c
commit
c2a6b0dd50
|
@ -46,6 +46,7 @@ class MasterView(View):
|
|||
"""
|
||||
filterable = True
|
||||
pageable = True
|
||||
checkboxes = False
|
||||
|
||||
creatable = True
|
||||
viewable = True
|
||||
|
@ -342,7 +343,7 @@ class MasterView(View):
|
|||
'pageable': self.pageable,
|
||||
'main_actions': self.get_main_actions(),
|
||||
'more_actions': self.get_more_actions(),
|
||||
'checkbox': self.checkbox,
|
||||
'checkboxes': self.checkboxes,
|
||||
'checked': self.checked,
|
||||
'row_attrs': self.get_row_attrs,
|
||||
'cell_attrs': self.get_cell_attrs,
|
||||
|
|
Loading…
Reference in a new issue