Details
-
Bug
-
Resolution: Unresolved
-
P4: Low
-
None
-
2.0.3
-
None
-
Fedora 24
Description
Setting function via installer.setValidatorForCustomPage seems to work as installer.setValidatorForCustomPageRequested signal is fired but clicking next button on the custom page does nothing even when dummy validation function just returns true.
Sample script:
function logValidatorForCustomPageRequested(component, name, callbackName) { console.log(component); console.log(name); console.log(callbackName); } function validate() { console.log(">>> Validating..."); return true; } function Component() { component.loaded.connect(this, Component.prototype.loaded); if (!installer.addWizardPage(component, "SomeWidget", QInstaller.ReadyForInstallation)) { console.log(">>> SomeWidget not added"); } installer.setValidatorForCustomPageRequested.connect(this, logValidatorForCustomPageRequested); } Component.prototype.loaded = function () { console.log(">>> Loaded: " + component.name); installer.setValidatorForCustomPage(component, "SomeWidget", validate); }