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?

[464 byte] By [sreedevi2006a] at [2007-10-2 22:15:19]
# 1
try this<h:form id="frm1"><t:panelTabbedPane><t:panelTab><t:commandButton value="add"/></t:panelTab></t:panelTabbedPane></h:form>
pringia at 2007-7-14 1:32:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
try this<t:panelTabbedPane><h:form id="frm1"><t:panelTab><t:commandButton value="add"/></t:panelTab></h:form> </t:panelTabbedPane>
delta530a at 2007-7-14 1:32:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3

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

Daffodil_Praveena at 2007-7-14 1:32:19 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...