mirror of
https://github.com/RolandWH/SIPPCompare.git
synced 2025-03-14 22:01:36 +00:00
do input validation on pension value field
This commit is contained in:
parent
107c388afb
commit
9ef6048601
@ -40,7 +40,7 @@ class SIPPCompare(QMainWindow):
|
|||||||
self.actionEdit_Platforms.triggered.connect(self.show_platform_edit)
|
self.actionEdit_Platforms.triggered.connect(self.show_platform_edit)
|
||||||
# Update percentage mix label when slider moved
|
# Update percentage mix label when slider moved
|
||||||
self.mix_slider.valueChanged.connect(self.update_slider_lab)
|
self.mix_slider.valueChanged.connect(self.update_slider_lab)
|
||||||
#self.value_input.valueChanged.connect(self.check_valid)
|
self.value_input.valueChanged.connect(self.check_valid)
|
||||||
self.share_trades_combo.currentTextChanged.connect(self.check_valid)
|
self.share_trades_combo.currentTextChanged.connect(self.check_valid)
|
||||||
self.fund_trades_combo.currentTextChanged.connect(self.check_valid)
|
self.fund_trades_combo.currentTextChanged.connect(self.check_valid)
|
||||||
|
|
||||||
@ -56,7 +56,8 @@ class SIPPCompare(QMainWindow):
|
|||||||
|
|
||||||
def check_valid(self):
|
def check_valid(self):
|
||||||
if self.share_trades_combo.currentText() != "" \
|
if self.share_trades_combo.currentText() != "" \
|
||||||
and self.fund_trades_combo.currentText() != "":
|
and self.fund_trades_combo.currentText() != "" \
|
||||||
|
and self.value_input.value() != 0:
|
||||||
self.calc_but.setEnabled(True)
|
self.calc_but.setEnabled(True)
|
||||||
else:
|
else:
|
||||||
self.calc_but.setEnabled(False)
|
self.calc_but.setEnabled(False)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user