serverSideTabSwitch attribute in x:panelTabbedPane shows wrong behaviour
------------------------------------------------------------------------

         Key: MYFACES-773
         URL: http://issues.apache.org/jira/browse/MYFACES-773
     Project: MyFaces
        Type: Bug
  Components: Tomahawk  
    Versions: Nightly    
    Reporter: Luciano Medina
    Priority: Minor


When serverSideTabSwitch attribute is set to "true", the tab switching is 
client-side, opposed as expected, and vice versa.
The bug is at line 88 in HtmlTabbedPaneRenderer.java:

    return serverSideTabSwitch != null ? serverSideTabSwitch.booleanValue() : 
false;

should be

    return serverSideTabSwitch != null ? !serverSideTabSwitch.booleanValue() : 
true;


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira

Reply via email to