summaryrefslogtreecommitdiff
path: root/ishtar_common/widgets.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/widgets.py')
-rw-r--r--ishtar_common/widgets.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/ishtar_common/widgets.py b/ishtar_common/widgets.py
index 5b5f44477..b13e9fe2e 100644
--- a/ishtar_common/widgets.py
+++ b/ishtar_common/widgets.py
@@ -948,8 +948,8 @@ class JQueryPersonOrganization(forms.TextInput):
class DataTable(Select2Media, forms.RadioSelect):
- def __init__(self, source, form, associated_model, attrs={},
- table_cols='TABLE_COLS', multiple=False, multiple_cols=[2],
+ def __init__(self, source, form, associated_model, attrs=None,
+ table_cols='TABLE_COLS', multiple=False, multiple_cols=None,
new=False, new_message="", source_full=None,
multiple_select=False, sortname="__default__",
col_prefix='', gallery=False, map=False):
@@ -982,6 +982,8 @@ class DataTable(Select2Media, forms.RadioSelect):
self.table_cols = table_cols
self.multiple = multiple
self.multiple_select = multiple_select
+ if not multiple_cols:
+ multiple_cols = [2]
self.multiple_cols = multiple_cols
self.new, self.new_message = new, new_message
self.source_full = source_full