You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Mikael Björertz (JIRA)" <ji...@apache.org> on 2014/05/11 00:07:34 UTC

[jira] [Created] (WICKET-5586) NextButton isEnabled() should bo logical conjunction of getWizardModel().isNextAvailable() and super.isEnabled()

Mikael Björertz created WICKET-5586:
---------------------------------------

             Summary: NextButton isEnabled() should bo logical conjunction of getWizardModel().isNextAvailable() and super.isEnabled()
                 Key: WICKET-5586
                 URL: https://issues.apache.org/jira/browse/WICKET-5586
             Project: Wicket
          Issue Type: Improvement
          Components: wicket-extensions
    Affects Versions: 6.12.0
            Reporter: Mikael Björertz


The implementation of isEnabled in NextButton breaks the implicit contract of setEnabled(false) -> isEnabled() returning false. There is no apparent reason and no explanation to why this is done.

Implementation should be 
return super.isEnabled() && getWizardModel().isNextAvailable();



--
This message was sent by Atlassian JIRA
(v6.2#6252)