-
Notifications
You must be signed in to change notification settings - Fork 11
136 reset document form btn v2 #175
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
136 reset document form btn v2 #175
Conversation
| self.populate_application_reason(application_subject) | ||
|
|
||
| def populate_application_subject(self) -> None: | ||
| for issue, description in ISSUE_DESCRIPTION_NOMINATIVE_MAPPER.items(): | ||
| self.application_subject.combobox.addItem(description, issue) | ||
|
|
||
| def populate_application_reason(self, application_subject: LabeledComboBoxComponent | None = None) -> None: | ||
| if not application_subject: | ||
| application_subject = self.application_subject.combobox.currentData() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👏
...get/containers/main_body/content/application/application_tabs/child_tab/school_data_group.py
Outdated
Show resolved
Hide resolved
| @@ -0,0 +1,352 @@ | |||
| import os | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Very first test of our widget! 🎆
| def __init__(self, parent: QWidget, visible: bool = False): | ||
| super().__init__(parent) | ||
| self.footer_container = parent | ||
| self.content_container = self.footer_container.main_body_container.content_container |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you really need to have self.content_container? Maybe you can move it to clear_application
def clear_application(self):
content_container = self.footer_container.main_body_container.content_container
content_container.application_container.clear()
|
Pcks are available for testing in https://github.com/stanislawK/alinka-pyside/actions/runs/18808039156 |

fixes #136
Original discussion and screenshots in PR created by pushing directly to alinka repo #139. That is the version pushed from the fork