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
This commit is contained in:
Brayan Osmar Pereyra Suxo
2012-06-04 16:54:06 -04:00
parent ee66ddeb89
commit 995f052a4b

View File

@@ -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);
}
}