Args: key (str): The unique string identifier of the required field. Returns: Widget field instance added previously with methods GenericDialog.add_field or GenericDialog.add_field_with_label.
(self, key)
| 2496 | self.container.append(container, key=key) |
| 2497 | |
| 2498 | def get_field(self, key): |
| 2499 | """ |
| 2500 | Args: |
| 2501 | key (str): The unique string identifier of the required field. |
| 2502 | |
| 2503 | Returns: |
| 2504 | Widget field instance added previously with methods GenericDialog.add_field or |
| 2505 | GenericDialog.add_field_with_label. |
| 2506 | """ |
| 2507 | return self.inputs[key] |
| 2508 | |
| 2509 | @decorate_set_on_listener("(self,emitter)") |
| 2510 | @decorate_event |
no outgoing calls
no test coverage detected