Thanks Matthias and Frank, that is exactly what I need!

Now, I'm using ADF (it is really working, I did a test on some components into my app and everything is OK) but in Tomcat log it is appearing:
-------------------------------------------------------
21/02/2006 13:34:31 oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl verifyFilterIsInstalled
WARNING: The AdfFacesFilter has not been installed.  ADF Faces requires this filter for proper execution.
-------------------------------------------------------
I've double checked my web.xml, as [1] and [2] suggests, but no success.
Everything is working, but will I have problems with that?

Here's a part of my web.xml:
----------------------------------
    <filter>
        <filter-name>extensionsFilter</filter-name>
        <filter-class>org.apache.myfaces.component.html.util.ExtensionsFilter</filter-class>
    </filter>
    <filter>
        <filter-name>adfFaces</filter-name>
        <filter-class>oracleadf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>

    <filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>extensionsFilter</filter-name>
        <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <servlet-name>Faces Servlet</servlet-name>
    </filter-mapping>
 
    <listener>
        <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>

    <!-- Faces Servlet -->
    <servlet>
        <servlet-name>Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
        <load-on-startup> 1 </load-on-startup>
    </servlet>
    <!-- ADF Faces Resource Servlet -->
    <servlet>
        <servlet-name>resources</servlet-name>
        <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>

    <!-- Faces Servlet Mapping -->
    <servlet-mapping>
        <servlet-name>Faces Servlet</servlet-name>
        <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <!-- ADF Faces Servlet Mapping -->
    <servlet-mapping>
        <servlet-name>resources</servlet-name>
        <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
----------------------------------

Thanks.

Fernando M. Pinheiro

[1] http://www.mail-archive.com/[email protected]/msg15867.html
[2] http://forums.oracle.com/forums/message.jspa?messageID=1182402
-----Mensagem Original-----
De: "Matthias Wessendorf" <[EMAIL PROTECTED]>
Enviado em: Monday, 20. Feb 2006 19:04 -0300
Para: "MyFaces Discussion" <[email protected]>
Assunto: Re: Grouping headers

Fernando-

if you like, you can build ADF Faces from scratch ([1]).

-Matthias

[1] - http://tinyurlcom/74x9b

On 2/20/06, Frank Felix Debatin <[EMAIL PROTECTED]> wrote:
>
> Hi Fernando,
>
> see below for a feature from the ADF Faces table implementation. I haven't tried it, but I guess it's what you're looking
for.
>
> Frank Felix
>
> Column Groups
>
> < af:column > tags can be nested to produce groups of columns. The header of a column group spans across all the
columns it contains. The following example creates a column group that has the header "Name" and contains two sub
columns with headers "First" and "Last":
> <af:table var="row" value="#{myBean.employees}">
> <af:column>
> <f:facet name="header">
> <af:outputText value="Name"/>
> </f:facet>
> <af:column>
> <f:facet name="header">
> <af:outputText value="First"/>
> </f:facet>
> <af:outputText value="#{row.firstname}"/>
> </af:column>
> <af:column>
> <f:facet name="header">
> <af:outputText value="Last"/>
> </f:facet>
> af:outputText value="#{row.lastname}"/>
> </af:column>
> </af:column>
> </af:table>
>
>
>
>
>
>

From: Fernando Madruga Pinheiro [mailto:[EMAIL PROTECTED]]
> Sent: Monday, February 20, 2006 9:28 PM
> To: MyFaces Discussion
> Subject: Grouping headers
>
>
>
> Hi,
>
> I'm trying to create a grouped header, but no success.
> I've searching a lot, and found this: [email protected]/msg07881.html">http://www.mail-archive.com/[email protected]/msg07881.html
>
> But this didn't work.
>
> What I need is to group some columns, like
>
> | A | B |
> +----+----+----+----+
> Rows | A1 | A2 | B1 | B2 |
> ------+----+----+----+----+
> Row 1 | 1 | 2 | 3 | 2 |
> Row 2 | 1 | 1 | 1 | 1 |
> Row 3 | 2 | 2 | 2 | 0 |
>
> Is it possible?
>
>
> --
>


> Fernando Madruga Pinheiro
> Analista de Sistemas
> WMix Distribuidora Ltda
> Fone/Fax: +55 (48) 3035-9734
>
> Esta mensagem foi enviada pela Wmix Distribuidora Ltda, para uso exclusivo do destinatário, podendo conter informações
confidenciais Se for recebida por terceiro que não o destinatário, deve ser apagada imediatamente do seu computador e a Wmix
Distribuidora Ltda notificada ([EMAIL PROTECTED]). As informações aqui prestadas não podem ser distribuídas ou
reproduzidas sem a expressa autorização da Wmix Distribuidora Ltda.



--
Matthias Wessendorf
Zülpicher Wall 12, 239
50674 Köln
http://www.wessendorf.net
mwessendorf-at-gmail-dot-com

Reply via email to