Mercurial > libervia-backend
comparison 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 |
comparison
equal
deleted
inserted
replaced
2418:69f979adb1d7 | 2419:c38c54c47e16 |
---|---|
388 _actions = 0 # use to keep track of bridge's launchAction calls | 388 _actions = 0 # use to keep track of bridge's launchAction calls |
389 readonly = False | 389 readonly = False |
390 workflow = None | 390 workflow = None |
391 _submit_cb = None | 391 _submit_cb = None |
392 | 392 |
393 def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, profile=None): | 393 def __init__(self, host, parsed_dom, title=None, flags=None, callback=None, ignore=None, profile=None): |
394 xmlui_manager.XMLUIPanel.__init__(self, host, parsed_dom, title, flags, profile=host.profile) | 394 xmlui_manager.XMLUIPanel.__init__(self, |
395 host, | |
396 parsed_dom, | |
397 title = title, | |
398 flags = flags, | |
399 ignore = ignore, | |
400 profile=host.profile) | |
395 self.submitted = False | 401 self.submitted = False |
396 | 402 |
397 @property | 403 @property |
398 def command(self): | 404 def command(self): |
399 return self.host.command | 405 return self.host.command |