Tomahawk panelTabbedPane Styles

Hello
I tried specifying CSS style info for activeTabStyleClass and inactiveTabStyleClass, and strangely I could change the tab label background color but not the font/size/color of the text. I have seen in the generated html that is part of a text input, but can not find how to change the format of this. (when the tab is inactive the text appears within a gray rectangle)
Does anyone know how to change the style of this componentent?
the code is:
<t:panelTabbedPane serverSideTabSwitch="false" selectedIndex="#{menu.focusIndex}"
          activeTabStyleClass="activeTab"
          inactiveTabStyleClass="inactiveTab"
          tabContentStyleClass="tabxwip"     
          >
          <t:panelTab id="tab1" label="Config">
               <h:panelGrid id="up" columns="2" styleClass="tabGrid">
                    ...and the css
.activeTab {
     background-color: white;
     width: 120px;
     font-size: 100%;
     padding: 20px;
     text-align: center;
     font-weight: bold;
     height: 20px;
.inactiveTab {
     background-color: #A1045F;
     width: 120px;
     font-size: 100%;
     padding: 20px;
     height: 20px;
     text-align: center;
      font-weight: bold;
.tabGrid {
     width: 1024px;
     border: 3px;
}

Posting JSF source code instead of the generated HTML code doesn't help much in solving CSS (and JS) problems. And if you do so, better use a CSS forum instead of a JSF forum.

Similar Messages

  • Tomahawk panelTabbedPane Styling Tab Labels

    Hello,
    Does anyone know how to change the text style of Tomahawk's paneltabbedPane? I tried specifying CSS style info for activeTabStyleClass, and strangely I could change the tab label background color but not the font/size/color of the text.
    Any ideas?
    Thanks,
    Greg

    Posting JSF source code instead of the generated HTML code doesn't help much in solving CSS (and JS) problems. And if you do so, better use a CSS forum instead of a JSF forum.

  • Tomahawk , panelTabbedPane problem...

    Hi,
    i am working with tabbedpane control of tomahawk, when i am including a plain jsp page like ....
    <t:panelTabbedPane serverSideTabSwitch="false">
         <t:panelTab id="tab1" label="TabbedPanel1">
             <f:verbatim><jsp:include page="profile.jsp"/> </f:verbatim>
    </t:panelTab>it is working fine. but when i try to include a jsf page , which has taglib directives to include core and html components of jsf, it is giving error on server console as well on browser also...
    stack trace ...
    2007-07-27 16:15:50,421 ERROR [org.apache.myfaces.taglib.core.ViewTag] Error writing endDocument
    java.io.IOException: Illegal to flush within a custom tag
         at javax.servlet.jsp.tagext.BodyContent.flush(BodyContent.java:79)
         at javax.faces.webapp._PageContextOutWriter.flush(_PageContextOutWriter.java:45)Help me to solve this issue....
    Thanks in advance...

    Hi...Thanks for reply...
    i tried flush attribute...but no use...
    i tried removing verbatim , it is not even showing the plain jsp page also.... i think may be there is a problem with @taglib....
    i had to include those files in the main file as well in profile file as i am using some members of those taglibraries in both the files....
    any other suggestion....

  • Tomahawk panelTabbedPane and panelTab index

    Hi.
    I use Tomahawk components in my web pages.
    In my panelTabbedPane, I use a loop to load the component of each panelTab.
    <t:panelTabbedPane serverSideTabSwitch="true">
    <c:forEach items="${actionTool.tabsList}" var="tab">
    <t:panelTab label="#{tab.label}">
    <ui:include src="#{tab.link}" />
    </t:panelTab>
    </c:forEach>
    </t:panelTabbedPane>
    I would like to load only the select panelTab. What can I do ?
    Can I get the instance of PanelTabbedPane created ?
    Can I get the actual panelTab activated via the panelTabbedPane ?
    Tanks.
    f_b
    Message was edited by:
    florent_b

    Ah well .. I misunderstood "imbricated form errors".
    Sorry, I don't have practical experience with this specific component. But such a construction just works with IBM's odc:tabbedPanel.
    You might try to look for another components. I know, IceFaces also have a tabbedpanel component.

  • Problem in tomahawk panelTabbedPane

    Hi
    I m trying to use the panel tabbed pane with the serversidetabswitch = true. Therefore I have declared a tab change listener with the following source code
    public class TabSupport implements Serializable, TabChangeListener
    private static final long serialVersionUID = 1L;
    int selectedTabIndex;
    public TabSupport()
    public int getSelectedTabIndex() {
      //System.out.println(" Property getSelectedTabIndex() accessed " + selectedTabIndex);
      return selectedTabIndex;
    public void setSelectedTabIndex(int selectedTabIndex) {
      //System.out.println(" Property setSelectedTabIndex() accessed");
      this.selectedTabIndex = selectedTabIndex;
    public void processTabChange(TabChangeEvent event){
      System.out.println("TabSupport:processTabChange() called " + event.getNewTabIndex() + " " + event.getPhaseId());
      this.selectedTabIndex = event.getNewTabIndex();
    }When I change the tab the listener is invoked which sets selectedTabIndex value accordingly and I can see this through the system message. But in the generated html the selected tab content doesnt show meaning selectedTabIndex is still 0. It hasnt been assigned to the new value or has been overwritten. TabSupport is in the session scope. Following is my jsp code
    <!
    DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <%@
    page contentType="text/html;charset=UTF-8" language="java" %>
    <%@
    taglib prefix="c" uri ="http://java.sun.com/jstl/core" %>
    <%@
    taglib prefix="f" uri ="http://java.sun.com/jsf/core" %>
    <%@
    taglib prefix="h" uri ="http://java.sun.com/jsf/html" %>
    <%@
    taglib uri="http://myfaces.apache.org/tomahawk " prefix="t"%>
    <
    f:view>
    <f:loadBundle basename="com.prytania.resource.Messages " var="messages"/>
    <html>
    <head>
    <title><h:outputText value="#{messages['title']}"/></ title>
    <t:stylesheet path="/report.css" />
    </head>
    <body>
    <h:form id="portfolioFatherForm" >
    <f:subview id="header" >
    <jsp:include page="inc/page_header.jsp" />
    </f:subview>
    <f:verbatim>
    <br/>
    </f:verbatim>
    <t:panelTabbedPane
    selectedIndex="#{tabSupport.selectedTabIndex}"
    styleClass="tabbedPane"
    width="100%"
    bgcolor="#FFFFCC"
    activeTabStyleClass="activeTab"
    inactiveTabStyleClass="inactiveTab"
    activeSubStyleClass="activeSub"
    inactiveSubStyleClass="inactiveSub"
    tabContentStyleClass="tabContent"
    serverSideTabSwitch="true"
    >
    <t:panelTab label=" #{messages['portfolio_summary']}" >
    <f:subview id="tabportfoliosummary" rendered="#{(tabSupport.selectedTabIndex==0)}" >
    <jsp:include page="portfoliosummary.jsp " />
    </f:subview>
    </t:panelTab>
    <t:panelTab label=" #{messages['portfolio_detail']}">
    <f:subview id="tabportfoliodetail" rendered="#{(tabSupport.selectedTabIndex==1)}" >
    <jsp:include page="portfoliodetail.jsp " />
    </f:subview>
    </t:panelTab>
    <t:panelTab label=" #{messages['portfolio_statistics']}">
    <f:subview id="tabportfoliostatistics" rendered="#{(tabSupport.selectedTabIndex==2)}" >
    <jsp:include page="portfoliostatistics.jsp " />
    </f:subview>
    </t:panelTab>
    <t:tabChangeListener type="com.prytania.listeners.TabSupport " />
    </t:panelTabbedPane>
    <f:subview id="footer" >
    <jsp:include page="inc/page_footer.jsp" />
    </f:subview>
    </h:form>
    </body>
    <html>
    </
    f:view> I shall be highly obliged with any responses.
    Hassnain

    even though the issue is a little bit old, but with this extension the solution of hassnaimbadami works fine:
    if you call the function "processTabChange" the servlet creates a new insatnce of the class TabSupport. if you get the right instance of the backing bean which actually refers to the "#{tabSupport.selectedTabIndex}" from the context every thing works.
    For exampel like that:
    public void processTabChange(TabChangeEvent event){
    backingBean = (TabSupport) FacesUtils.getManagedBean("tabSupport")
    backingBean.setTabindex(event.getNewTabIndex());
    ---> FacesUtils:
    package ..
    import javax.faces.application.Application;
    import javax.faces.application.ApplicationFactory;
    import javax.faces.FactoryFinder;
    import javax.faces.el.ValueBinding;
    public class FacesUtils {
         * Get managed bean based on the bean name.
         * @param beanName the bean name
         * @return the managed bean associated with the bean name
         public static Object getManagedBean(String beanName) {
              Object o = getValueBinding(getJsfEl(beanName)).getValue(FacesContext.getCurrentInstance());
              return o;
         private static ValueBinding getValueBinding(String el) {
              return getApplication().createValueBinding(el);
         private static String getJsfEl(String value) {
              return "#{" + value + "}";
         private static Application getApplication() {
              ApplicationFactory appFactory = (ApplicationFactory)FactoryFinder.getFactory(FactoryFinder.APPLICATION_FACTORY);
              return appFactory.getApplication();
    }

  • Dynamic tabs in Tomahawk panelTabbedPane

    I want to create a t:panelTabbedPane with a dynamic number of tabs. It's quite straightforward if implemented in a backing bean:
      <t:panelTabbedPane binding="#{MyBean.tabbedPane}"/>
      public class MyBean {
        public HtmlPanelTabbedPane getTabbedPane() {
          HtmlPanelTabbedPane tabbed = new HtmlPanelTabbedPane();
          //Loop as desired
          HtmlPanelTab tab = new HtmlPanelTab();
          tab.setLabel("My tab");
          tab.setId("tab_0");
          tabbed.getChildren().add(tab);
          return tabbed;
      }However, once I have my dynamically added tabs, I run into trouble when I want to populate them. Is there a convenient way to add JSF content to these tabs, defined using regular JSF tags? If not I guess I'll have to generate all the content using Java. I'm having a hard time finding much information about how to set values (EL expressions for example) and bindings for the components inside the tabs. Any ideas are appreciated!

    Once you are in the programmatic realm, I am not aware of a standard way to include components generated from a view representation like a JSP or Facelet file.
    As to the EL expressions, use UIComponent.setValueExpression() along with Application.getExpressionFactory() and ExpressionFactory.createValueExpression(). For the action attribute of the command components, use UICommand.setActionExpression() and ExpressionFactory.createMethodExpression().

  • Custom styleClass for Tomahawk:panelTabbedPane

    When trying to apply custom css to panelTabbedPane nothing happens and I get default appearance (activeTabStyleClass, inactiveTabStyleClass, activeSubStyleClass) are allways default. How to apply custom css.
    Regards, Simy

    Check this out:
    http://wiki.apache.org/myfaces/SettingTabClasses?highlight=%28panelTabbedPane%29

  • PanelTabbedPane and multiple form

    Hi,
    I've got a problem with tomaHawk panelTabbedPane component.
    I would like to insert a form in each panelTab child node but it isn't possible.
    <t:panelTabbedPane>
    <t:panelTab>
    <h:form id="idForm1">
    content 1
    </h:form>
    </t:panelTab>
    <t:panelTab>
    <h:form id="idForm2">
    content 2
    </h:form>
    </t:panelTab>
    </t:panelTabbedPane>
    In fact, panelTabbedPane component generate a form, and generate imbricated forms errors.
    It works with a single form enrolling the panelTabbedPane but it's problematic for validation errors because all panelTab components will be evaluated.
    Is there a mean of insert form in each panelTab with this component ?
    Thanks

    Ah well .. I misunderstood "imbricated form errors".
    Sorry, I don't have practical experience with this specific component. But such a construction just works with IBM's odc:tabbedPanel.
    You might try to look for another components. I know, IceFaces also have a tabbedpanel component.

  • Need panelTabbedPane examples (wizard within one tab)

    Hi All,
    I cannot find a good, substantial example of using the tomahawk panelTabbedPane UI feature. I am trying to build an application UI where the panelTabbedPane is the main navigation feature.
    One of the tabs will contain a wizard, where each page of the wizard is a different JSP. So, basically I want to submit a form on the included JSP and have the response render in place of the submitted JSP (within the context of the tab).
    Does anyone know of a good example of using panelTabbedPane in this way?
    I already tried to search the apache mail archives with little success.
    Thanks in advance,
    Matt

    The things you'd need to do are:
    Create two Conditional Build Tags: File > New > Conditional Build Tags (e.g. CSH and Main)
    Add the two Conditional Build Tag to those topics: From the Topic List pod, select the topics. Right click and select Properties. Click on the Advanced tab and select the tag in the Topic Level tag section. For example, add the CSH tag to the main help file topics and the Main tag to the CSH topics.
    In your single source layout define a Conditional Build Expression to exclude the CSH tag. This produces your main help (but not your CSH topics) complete with the image map.
    Duplicate that single source layout (right click & Duplicate Layout). Change the properties to use the exclude the Main Conditional Build Expression and write the output to a different directory. You may also want to change the name of the single source layout from "Copy of....".
    When you generate your output you can right click in the single source layout pod and click Batch Generate to generate both outputs at the same time.
    Let us know how you get on.

  • Using datapanel to request another resource

    Hi
    I am using tomahawk paneltabbedpane with panel tabs. My code has the form
    contents of portfoliosummary.jsp
    <t:panelTabbedPane selectedIndex="0" width="100%">
         <t:panelTab label="#{messages['portfolio_summary']}">
                        ----some JSF components----
         </t:panelTab>
         <t:panelTab label="#{messages['portfolio_detail']}"/>
         <t:panelTab label="#{messages['portfolio_statistics']}"/>
    </t:panelTabbedPane>What I want to achieve is that on clicking the portfolio_detail panel I could request some other resource for example a JSP page(portfoliodetail.jsp) This would mean that clicking on any of my panel Tabs would load a different jsp for me. Is there any possible way to do that?

    This forum focuses on end-user support. You can find more web development help on the [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. Separate forum, separate registration. Please note the tips in the Sticky Post at the top of the forum before posting.

  • Help needed with Myfaces - tomahawk t:panelTabbedPane form tag iserted wh

    when i Use tomahawk <t:panelTabbedPane> component, during rendering stage. its atomatically inserts <form> tag around it.
    Is there any way to avoid this <form tag. because, I am using 3 tab column, and each tab has got its own form tag.
    so in that case. there is <form> inside <form>, thats giving errors when using some javascript function with this..
    is there any solution for this

    Hi,
    Could you please tell us if you are using Sun Java Studio Creator for building your web application.
    RK

  • t:panelTabbedpane tag of tomahawk

    I am trying to use <t:panelTabbedpane> but i am unable to use it
    i am trying myfaces1.1.2 jars and tomahawk1.1.2 jars
    is this version of myfaces support <t:panelTabbedpane>
    I am able to use use <t:inputDate> but unable to use <t:panelTabbedpane>
    my code is :::
    <t:panelTabbedPane bgcolor="#FFFFCC">
    <t:panelTab label="Tab 1">
    <f:verbatim><H1>Tab 1</H1></f:verbatim>
    </t:panelTab>
    <t:panelTab label="Tab 2">
    <f:verbatim><H1>Tab 2</H1></f:verbatim>
    </t:panelTab>
    <t:panelTab label="Tab 3">
    <f:verbatim><H1>Tab 3</H1></f:verbatim>
    </t:panelTab>
    </t:panelTabbedPane>
    i m getting message::::
    javax.faces.FacesException: org.apache.jasper.JasperException
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:425)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:95)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Pls help me ,
    suggesting me that are the actual requirement for using this component and the probable area of error
    thanks

    i used tomahawk's panelTabbedpane component.
    first, you have to import tomahawk-1.1.3.jar and commons-fileupload-1.1.1.jar to lib folder.
    second, you have to add these lines to your web. xml file.
         <!-- FOR TOMAHAWK COMPONENTS!!! -->
         <filter>
              <filter-name>MyFacesExtensionsFilter</filter-name>
              <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
             <init-param>
                 <param-name>maxFileSize</param-name>
                 <param-value>20m</param-value>
             </init-param>
         </filter>
         <filter-mapping>
             <filter-name>MyFacesExtensionsFilter</filter-name>
             <servlet-name>Faces Servlet</servlet-name> <!-- Your JSF Servlet name!!! -->
         </filter-mapping>
         <filter-mapping>
             <filter-name>MyFacesExtensionsFilter</filter-name>
             <url-pattern>/faces/myFacesExtensionResource/*</url-pattern>
         </filter-mapping>after doing all of these, you should use tomahawks compos.

  • The autoform in t:panelTabbedPane in tomahawk

    I am using <t:panelTabbedPane>
    <t:panelTabbedPane>
    <t:panelTab>
    <h:form id="frm1">
    <t:commandButton value="add"/>
    </h:frm>
    </t:panelTab>
    </t:panelTabbedPane>
    When I load the page I get a javascript error stating that the "elements is null". This is because of the autoform that is generated when using this component.
    What is the workaround for this?

    I am trying to use <t:panelTabbedpane> but i am unable to use it
    i am trying myfaces1.1.2 jars and tomahawk1.1.2 jars
    Is this version of myfaces support <t:panelTabbedpane>
    I am able to use use <t:inputDate> but unable to use <t:panelTabbedpane>
    my code is :::
    <t:panelTabbedPane bgcolor="#FFFFCC">
    <t:panelTab label="Tab 1">
    <f:verbatim><H1>Tab 1</H1></f:verbatim>
    </t:panelTab>
    <t:panelTab label="Tab 2">
    <f:verbatim><H1>Tab 2</H1></f:verbatim>
    </t:panelTab>
    <t:panelTab label="Tab 3">
    <f:verbatim><H1>Tab 3</H1></f:verbatim>
    </t:panelTab>
    </t:panelTabbedPane>
    i m getting message::::
    javax.faces.FacesException: org.apache.jasper.JasperException
         at org.apache.myfaces.context.servlet.ServletExternalContextImpl.dispatch(ServletExternalContextImpl.java:425)
         at org.apache.myfaces.application.jsp.JspViewHandlerImpl.renderView(JspViewHandlerImpl.java:234)
         at org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:300)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:95)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:213)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2422)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:163)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
         at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
         at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
         at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:199)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:828)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:700)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:584)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:683)
         at java.lang.Thread.run(Thread.java:534)
    Pls help me by suggesting me what are the actual requirement for using this component and is the probable area of error
    thanks

  • Applying styles to  t:panelTab and t:panelTabbedPane

    I am trying to apply custom styleClasses to the t:panelTab and t:panelTabbedPane components. it seems it is not getting reflected. If some body knows a solution please help me.

    Search the forums
    If that fails, then search Google

  • Tomahawk JSF pagination display style

    I am new to JSF.
    I am using tomahawk data scroller. My requirement is to display pagination like below
    <previous> page x of y <next> .
    If I am entering any thing inside <facet name ="previous" those are not displayed as I wish. Please let me know How to do this.

    Ah OK, I now see and understand your problem.
    Sorry, I can't give a detailed answer on this as I've never used the t:dataScroller before. How does the generated HTML output look like? You could play a bit with CSS to align out the positioning. Does it maybe help if you add the <h:outputText value="#{PageIndex} of #{PageCount}"/> to the first facet?
    E.g.
    <f:facet name="previous">
        <h:panelGroup>
            <h:outputText value="Previous Page"/>
            <h:outputText value="#{PageIndex} of #{PageCount}"/>
        </h:panelGroup>
    </f:facet>
    <f:facet name="next"><h:outputText value="Next Page"/></f:facet>

Maybe you are looking for