def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, opt + [
         'size', 'nonempty', 'maxlength', 'class', 'initial_value', 
         'sync_with', 'sync_map', 'trim_spaces', 'password']
Exemple #2
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, (opt + ['initial_value'])
Exemple #3
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req + ['columns', 'data'], \
            opt + ['header_style', 'orderable', 'on_rows_change', 'order', 'rows_per_page']
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req + ['columns', 'data'], \
            opt + ['header_style', 'orderable', 'on_rows_change', 'order', 'rows_per_page']
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, (opt + ['initial_value'])
Exemple #6
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, opt + ['formats', 'initial_value']
Exemple #7
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return [
         req + ['columns', 'initial_selection', 'key', 'source'],
         opt + ['label_button', 'table_class']
     ]
Exemple #8
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, opt + ['label', 'submit']
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return [
         req + ['columns', 'initial_selection', 'key', 'source'],
         opt + ['label_button', 'table_class']
     ]
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, opt + ["label", "submit"]
Exemple #11
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return (req + ['options'], 
             opt + ['selected', 'sync_with', 'ajax_url', 
                    'headoption', 'multiple', 'size'])
Exemple #12
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return (req + ['options']), (opt + ['initial_value', 'separator'])
Exemple #13
0
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return req, opt + [
         'size', 'nonempty', 'maxlength', 'class', 'initial_value',
         'sync_with', 'sync_map', 'trim_spaces', 'password'
     ]
 def get_args_spec(self):
     req, opt = BaseJS.get_args_spec(self)
     return (req + ['options']), (opt + ['initial_value', 'separator'])