Merge pull request #33 from brayanpereyra/BUG-9161

BUG 9161 'Next' button is deactivated in wizard SOLVED
This commit is contained in:
julceslauhub
2012-06-08 07:01:59 -07:00

View File

@@ -511,7 +511,9 @@ Ext.onReady(function(){
listeners: { listeners: {
show: function() { show: function() {
setTimeout(function(){ setTimeout(function(){
wizard.onClientValidation(2, false); var iAgree = Ext.getCmp('agreeCheckbox').getValue();
wizard.onClientValidation(2, iAgree);
}, 100); }, 100);
} }
} }