shseah601
shseah601
My temporary solution for searchbar is to manually implement the searchbar in header template and search function since the component has no search method. ``` {{ionicSelectableComponent.closeButtonText}} {{ionicSelectableComponent.titleText}} ``` You will...
When you are within MainWindow class, my work around is to run asyncio.create_task in QTimer ``` class MainWindow(QtWidgets.QMainWindow, Ui_MainWindow): def __init__(self, *args, **kwargs): super(MainWindow, self).__init__(*args, **kwargs) # function provided from...