Interface TabGroupTagDeclaration
-
- All Superinterfaces:
HasAction
,HasActionListener
,HasAutoSpacing
,HasBinding
,HasId
,HasIdBindingAndRendered
,HasTip
,IsImmediateCommand
,IsRendered
,IsVisual
public interface TabGroupTagDeclaration extends HasIdBindingAndRendered, IsImmediateCommand, HasAction, HasActionListener, IsVisual, HasTip, HasAutoSpacing
Renders a tab group which contains tab panels.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setRenderedIndex(String renderedIndex)
For internal use.void
setSelectedIndex(String selectedIndex)
ValueBindingExpression pointing to a Integer to save the component's selected Tab.void
setShowNavigationBar(String showNavigationBar)
Flag indicating that the tab navigation bar is rendered.void
setSwitchType(String switchType)
Indicating how tab switching should be done.void
setTabChangeListener(String listener)
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasAction
setAction
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasActionListener
setActionListener
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasAutoSpacing
setAutoSpacing
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasBinding
setBinding
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.HasTip
setTip
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsImmediateCommand
setImmediate
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsRendered
setRendered
-
Methods inherited from interface org.apache.myfaces.tobago.internal.taglib.declaration.IsVisual
setCustomClass, setMarkup
-
-
-
-
Method Detail
-
setShowNavigationBar
void setShowNavigationBar(String showNavigationBar)
Flag indicating that the tab navigation bar is rendered.
-
setSwitchType
void setSwitchType(String switchType)
Indicating how tab switching should be done.
Possible values are:
- client
- Tab switching is done on client, no server Request.
- reloadPage
- Tab switching is done by server request. Full page is reloaded.
- reloadTab
- Tab switching is done by server request. Only the Tab is reloaded.
- Parameters:
switchType
- Sets the switching type.
-
setSelectedIndex
void setSelectedIndex(String selectedIndex)
ValueBindingExpression pointing to a Integer to save the component's selected Tab.
-
setRenderedIndex
void setRenderedIndex(String renderedIndex)
For internal use. TBD: Check if this is needed any longer.
-
setTabChangeListener
void setTabChangeListener(String listener)
-
-