You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Luciano Medina (JIRA)" <de...@myfaces.apache.org> on 2005/11/02 10:49:55 UTC

[jira] Created: (MYFACES-773) serverSideTabSwitch attribute in x:panelTabbedPane shows wrong behaviour

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


[jira] Closed: (MYFACES-773) serverSideTabSwitch attribute in x:panelTabbedPane shows wrong behaviour

Posted by "Martin Marinschek (JIRA)" <de...@myfaces.apache.org>.
     [ http://issues.apache.org/jira/browse/MYFACES-773?page=all ]
     
Martin Marinschek closed MYFACES-773:
-------------------------------------

    Fix Version: Nightly
     Resolution: Fixed

Thanks to Luciano Medina

> 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
>      Fix For: Nightly

>
> 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