From 995f052a4bf5c7ce43bbd593968ba99b8e5b548d Mon Sep 17 00:00:00 2001 From: Brayan Osmar Pereyra Suxo Date: Mon, 4 Jun 2012 16:54:06 -0400 Subject: [PATCH] BUG 9161 'Next' button is deactivated in wizard SOLVED - The Next button is deactivated in screen of Installation wizard of PM - I solved the bug with validate of checkboxs 'I agree' to deactivate button Next --- workflow/engine/templates/installer/installer_cards.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/workflow/engine/templates/installer/installer_cards.js b/workflow/engine/templates/installer/installer_cards.js index 03a994286..c987f7346 100644 --- a/workflow/engine/templates/installer/installer_cards.js +++ b/workflow/engine/templates/installer/installer_cards.js @@ -511,7 +511,9 @@ Ext.onReady(function(){ listeners: { show: function() { setTimeout(function(){ - wizard.onClientValidation(2, false); + var IAgree = Ext.getCmp('agreeCheckbox')getValue(); + + wizard.onClientValidation(2, IAgree); }, 100); } }