Mercurial > libervia-backend
diff frontends/src/jp/xmlui_manager.py @ 2419:c38c54c47e16
frontends (xmlui): added an attribute to ignore some widgets (and their label) in create
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 05 Nov 2017 13:53:28 +0100 |
parents | 8b37a62336c3 |
children | 0046283a285d |
line wrap: on
line diff
--- a/frontends/src/jp/xmlui_manager.py Sun Nov 05 13:44:07 2017 +0100 +++ b/frontends/src/jp/xmlui_manager.py Sun Nov 05 13:53:28 2017 +0100 @@ -390,8 +390,14 @@ workflow = None _submit_cb = None - def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, profile=None): - xmlui_manager.XMLUIPanel.__init__(self, host, parsed_dom, title, flags, profile=host.profile) + def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, ignore=None, profile=None): + xmlui_manager.XMLUIPanel.__init__(self, + host, + parsed_dom, + title = title, + flags = flags, + ignore = ignore, + profile=host.profile) self.submitted = False @property