X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plugins%2Flists%2Fsimplelist.py;h=26510303ca136b6d0dc984c807b59aa8c02e4f29;hb=ea102d533c62de817826a08aab357d5f19405360;hp=69e47aa530852b62b3546e1bdf39107e17839ada;hpb=5741daf5436565a4090495e7c3a1e6cb2c445b52;p=myslice.git diff --git a/plugins/lists/simplelist.py b/plugins/lists/simplelist.py index 69e47aa5..26510303 100644 --- a/plugins/lists/simplelist.py +++ b/plugins/lists/simplelist.py @@ -3,10 +3,12 @@ from unfold.plugin import Plugin class SimpleList (Plugin) : # only deal with our own stuff here and let Plugin handle the rest - def __init__ (self, key, with_datatables=False, **settings): + def __init__ (self, key, with_datatables=False, classname=None, **settings): Plugin.__init__ (self, **settings) self.key=key self.with_datatables = with_datatables + # the DOM classname + self.classname = classname if classname is not None else "simplelist" # SimpleList is useless per se anyways def template_file (self): @@ -18,6 +20,7 @@ class SimpleList (Plugin) : header=getattr(self,'header',None) if header: env['header']=header env['with_datatables']= "yes" if self.with_datatables else "" + env['classname']=self.classname return env def requirements (self): @@ -34,5 +37,5 @@ class SimpleList (Plugin) : reqs['js_files'].append ("js/with-datatables.js") return reqs - def json_settings_list (self): return ['plugin_uuid','query_uuid','key'] + def json_settings_list (self): return ['plugin_uuid','query_uuid','key','classname']