|
Hey Bobby, The ‘save logic’ is definitely
the source of the tabs changing into buttons. I have 2 tabbed panels and only applied
the ‘save logic’ to one and it is only this changed one that exhibits
the tab button look. Just to double check, I commented out the ‘save
logic’ and the tabs reappeared as normal. I don’t think my case has to do with
XP theme because as said above, I have 2 tab panels and in the same session one
works and the other does not. Some how (and I’m guessing) I get
the feeling that the ‘Listener’ or “serverSideTabSwitch=true”
is disturbing myfaces’ internal call in such away that it does not
see the .css files or is disturbing the proper /faces/* servlet filtering. I recall that you had a similar issue, was
it exactly the same as I’m describing here? Are you using ‘save logic’ for
tabs? Thanks, Rodney From: Bobby
Rosenberger [mailto:[EMAIL PROTECTED] Hey Rodney, On 11/16/05, Burke,
Rodney <[EMAIL PROTECTED]>
wrote: Hello, I
had a working tab panel that looked normal. However,
after adding logic to save the tab state, the tabs now look like buttons. Does
any one know what could be going wrong here? To
manage tab state I'm using myfaces 20051114 nightly build and the following
logic: JSP
FILE: -----------
<t:panelTabbedPane
selectedIndex="#{controlGEM.manualTabPaneIndex}"
serverSideTabSwitch="true">
<t:tabChangeListener
type="mam.web.gem.ControlGEM"/>
…
</t:panelTabbedPane> mam.web.gem.ControlGEM
Class: ----------------------------------------- import
org.apache.myfaces.custom.tabbedpane.TabChangeListener; import
org.apache.myfaces.custom.tabbedpane.TabChangeEvent; import
javax.faces.event.AbortProcessingException; public
class ControlGEM implements TabChangeListener { …
public void processTabChange(TabChangeEvent tabChangeEvent) throws
AbortProcessingException
{
setManualTabPaneIndex(new Integer(tabChangeEvent.getNewTabIndex()));
} } Again,
the tab state logic appears to be working fine, except for the fact that the
tabs now look like buttons. Thanks
for your help, Rodney |
- Why tabs look like buttons? Burke, Rodney
- Re: Why tabs look like buttons? Bobby Rosenberger
- Re: Why tabs look like buttons? Don Tam
- Re: Why tabs look like buttons? Bobby Rosenberger
- Re: Why tabs look like buttons? Don Tam
- Re: Why tabs look like buttons? Bobby Rosenberger
- RE: Why tabs look like buttons? Jeremy Sager
- RE: Why tabs look like buttons? Burke, Rodney
- Re: Why tabs look like buttons? Bobby Rosenberger
- RE: Why tabs look like buttons? Burke, Rodney
- panelTabbedPane is not saving tab index or firi... Louis Burroughs
- Re: panelTabbedPane is not saving tab index... Mike Kienenberger
- Re: Why tabs look like buttons? jyothish
- Re: Why tabs look like buttons? Dennis Byrne
- RE: Why tabs look like buttons? Jeremy Sager
- Re: Why tabs look like buttons? Dennis Byrne
- Re: Why tabs look like buttons? Dennis Byrne

