JDeveloper 11.1.2.3, ADF Faces, JQuery Integration via ADF Library

I cannot seem to get a consuming application to execute jquery's ready() function defined within a adflib application. Here is my setup
directory structure of where my javascript files are:
CommonApp
-ViewController
--public_html
---resources
----js
-----jquery-1.6.2.min.js
-----acme.js
The above structure created by default by jdev when creating a new javascript file. Now the test code (also within CommonApp) which works looks like the following:
test.jsf
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:document title="test.jsf" id="d1">
        <af:group id="g1">
            <af:resource type="javascript" source="/resources/js/jquery-1.6.2.min.js"/>
            <af:resource type="javascript" source="/resources/js/acme.js"/>
        </af:group>
        <af:form id="f1">
         </af:form>
    </af:document>
</f:view>Contents of acme.js
$(document).ready(function () {
    // do jQuery
    alert('jquery ready called')
});OK so far so good, test.jsf runs and an alert dialog pops up. Moving on... CommonApp is deployed as an ADF Library and consumed by a ChildApp.
There is a single .jsf file within the ChildApp and the code is exactly identical to the above test.jsf. Upon runtime there is no alert dialog! What am I missing?

A bit more fiddling around:
I have added the following code to acme.js
function test() {
    alert('test');
}redeployed the adflib
Within my ChildApp I have added the following code to test.jsf:
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<f:view xmlns:f="http://java.sun.com/jsf/core" xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <af:document title="test.jsf" id="d1">
        <af:group id="g1">
            <af:resource type="javascript" source="/resources/js/jquery-1.6.2.min.js"/>
            <af:resource type="javascript" source="/resources/js/acme.js"/>
        </af:group>
        <af:form id="f1">
            <af:commandButton text="commandButton 1" id="cb1">
                <af:clientListener method="test" type="click"/>
            </af:commandButton>
        </af:form>
    </af:document>When the code is ran, I clicked the button and the alert dialog is invoked.
</f:view>

Similar Messages

  • ER - Problem with ADF Faces filter when running ADF Faces within a portlet

    I am attempting to get ADF Faces to run within Oracle Portal, i.e. within a portlet using the JPDK.
    This, I am sure you are about to tell me, is not something that is fully supported, as yet.
    However, I have been successful in getting MyFaces to run within a portlet, by customizing the form tag.
    MyFaces, it seems, keeps track of the current viewid by storing it in the session, then uses this within the viewhandler and navigationhandler to determine the next view to load, based on the faces-config.xml navigation entries.
    By customizing the form tag it is then possible to retrieve this viewid from the faces context and outputting it in the form's action parameter.
    It is also possible, with a few more customizations, to run JSF RI within a portlet, i.e. by adding a custom viewhandler and loading a session variable with the current viewid from the faces context, then retrieving the viewid and outputting it as the action string in the customized form tag .
    Unfortunately there does not appear to be any way of getting ADF Faces (EA19 version) to run as a portlet, with either the RI or with MyFaces.
    I have configured a basic .jspx document in the <showPage> tags of the provider.xml file.
    This uses only the form tag and a few input tags and works when executed directly within my portlet project in JDeveloper (http://localhost:8988/TestJSFAppContext/faces/htdocs/facesportlet/index.jspx) using a redirectfilter (*.jspx htdocs -> /faces/htdocs).
    It is not possible to run ADF Faces with RI as a portlet since customization of the ADF Faces ViewHandler appears not to be supported.
    When attempting to run this with MyFaces as a portlet, however, I get the following message:
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl verifyFilterIsInstalled
    WARNING: The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    I am having difficulty in understanding as to why this is happening but am guessing it must be something to do with either redirect URLs or due to the .jspx files being under /htdocs, i.e. the ADF Faces renderkit is checking that the ADF Faces filter is configured but the check fails since the filter does not execute.
    I have configured the filter in web.xml, as detailed in the documentation:
      <filter>
        <filter-name>adfFaces</filter-name>
        <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
      </filter>
      <filter-mapping>
        <filter-name>adfFaces</filter-name>
        <servlet-name>ADF Faces Servlet</servlet-name>
      </filter-mapping>
    <servlet>
        <servlet-name>ADF Faces Servlet</servlet-name>
        <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>ADF Faces Servlet</servlet-name>
        <url-pattern>/faces/*</url-pattern>
      </servlet-mapping>and have modified the provider.xml file as follows:-
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
      <showPage>/faces/htdocs/facesportlet/index.jspx</showPage>        
             <editPage>/htdocs/facesportlet/FacesportletEditPage.jsp</editPage>
             <editDefaultsPage>/htdocs/facesportlet/FacesportletEditDefaultsPage.jsp</editDefaultsPage>
          </renderer>with the following tags also set:
       <session>true</session>
       <passAllUrlParams>true</passAllUrlParams>In order to ensure that the session stays alive so that the views are retrieved.
    As I say, the page loads OK when run directly within the JPDK project within JDeveloper, with a redirect filter (*.jspx -> /faces/*.jspx) but not when run from within Oracle Portal.
    In fact I have found that this filter is very sensitive, i.e. ADF Faces will not run in any project unless the configuration is exactly as above.
    It seems that the MyFaces team have got around the problem of maintaining session state with redirections but that ADF Faces needs the page URL that is passed in to the filter to be consistent.
    Is there some way around this, i.e. some kind of customization that I can implement to get the filter working?
    Thnks

    I have found a way to go round the problem.
    I use the servlet 2.4/jsp 2.0 route and then
    change the web.xml header to the servlet 2.3/jsp 1.2
    format. Everything then works fine after this!
    Please fix this for production.
    Behnam

  • ADF FACES: Drag&drop of ADF Faces component set all prefixes to af: or :afh

    First i create a JSF page without ADF Faces components;
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    <title>
    untitled2
    </title>
    </head>
    <body>
    <h:form>
    <h:outputText value="outputText0"/>
    </h:form>
    </body>
    </html>
    </f:view>
    Then i put the ADF Faces components <af:inputText (or <af:table>) label="Label 0"/> per drag & drop to my JSF page:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA11/html" prefix="afh"%>
    <f:view>
    <afh:html>
    <afh:head title="untitled2">
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
    </afh:head>
    <afh:body>
    <af:form>
    <h:outputText value="outputText0"/>
    <af:inputText label="Label 0"/>
    </af:form>
    </afh:body>
    </afh:html>
    </f:view>
    !!! All tag prefixes are changed to af: or rather afh: !!!
    Why? Is this a feature? WHERE CAN I DISABLE THIS???
    I read in docs that ADF Faces components works well together with RI components or other and i can mix them.

    I posted about this recently and didn't get a single response. I've scoured the project setting/ preferences and was unable to find any pertinant setting. The workaround i've used is to design the entire page and then use notepad(yep notepad) to add the adf tags. Don't bother trying to open the .jsp/.jspx again in jdev or it will modify the tags. I'm assuming this will be addressed in the production release and am hoping this is not a branding issue.
    I'd love to hear a products person address this.

  • Secure the ADF pages in portlet via ADF portlet bridge

    Hi All
    My project is using the ADF security model to do the authentication and authorization and the project can be deploy to weblogic and works fine.
    Currently i want o extend the pages and taskflows to WebCenter portlet client via the ADF portlet bridge. How can i implement the security policy
    to reuse the existing code? i have no idea how the portlet client interactively work with producer to do the authentication.
    appreciated if anyone can give a hand on this or show some examples.

    Could you tell me how you were able to combine an adf-table bound to BC with a portlet in the same page? I'm getting a 'portlet unavailable exception' when I try to customize my RichTextPortlet?
    If I run the portlet on it's own in a jspx-document everything runs just fine, but from the moment you add an adf-component the portlet is unavailable?

  • JDeveloper 11g/ADF Faces Rich Client

    Hello,
    We are trying to decide between using JDeveloper 10.1.4 and JDeveloper 11g for developing a new application - we plan to use just the ADF Faces layer of the ADF Framework along with Spring and TopLink for other layers.
    On one hand we think that is is safer to use 10.x version of ADF Faces as it may be more stable and on the other hand we are tempted to use 11g as it provides Ajax-enabled JSF Components.
    Has anyone used ADF Faces Rich Client Framework for developing applications? Is it stable enought to be used for production-level applications?
    I would love to hear your thoughts!

    Hi,
    don't use 10.1.3.4 to develop a new application now unless you have browser constraints with your user-base.
    ADF Faces RC / 11g requires:
    FireFox 2, 3
    Internet Explorer 7.0
    Safari 3.0
    11g is a significant update and they have vastly improved/redesigned a lot of things that were difficult/complex to do in earlier versions.
    Plus the 11g user interface is way better from a users perspective.
    Brenden

  • ADF-Faces and JDeveloper 11

    I have an application that already done and running, the JSPs of this application almost generated with JHeadStart,
    the components are ADF-Faces components with the ADF-Faces implementation of the release 10.1.3.3 of Jdeveloper.
    I'd like to find a way to migrate this application to new JDeveloper 11.
    so the tables becomes not fixed width and height columns, and also to be possible to use the new features in JDEV 11

    Saeed,
    this is really a JHeadstart Forum question (JHeadstart
    There is no JHeadstart 11g available yet.
    Migration should not be done without proper JHeadstart support.
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to develop web app by ADF Faces rich web client ?

    i want developer web app by adf face rich
    but have not adf rich tag library in jdev 10.1.3
    how to develop by adf rich?

    Hi,
    don't know what you mean by ADF Faces rich web client, but if you mean our Ajax component set, then this is not yet available outside of Oracle. If you mean ADF Faces as we have it in JDeveloper 10.1.3, create a JSF page and step through the creation process, toggle the ADF Faces libraries to make ADF Faces available
    Frank

  • How to select rows in adf faces table

    Hi guys
    im new to adf faces .I created a adf faces table with some data.My task is to select one row and if i click tht row, the data of tht row will be displayed in an input text fileds.How can i select a row in a adf faces table and give actions to rows...i read so many tutorials...none of them didnt give a correct idea....plz help me...
    thanks in advance..
    rajiv

    You're here in the Sun JSF forum, not in the Oracle JSF forum.
    Try here: JDeveloper and ADF
    If the ADF datatable is technically comparable with the RI datatable, check http://balusc.xs4all.nl/srv/dev-jep-dat.html to get some insights how to retrieve the selected row object.

  • ADF Faces using & pricing

    Hello,
    I'm using JavaServer Faces now and I'd like to use ADF Faces components - it can make make my development better. The question is about it's pricing - can I use it for free, with any Application Server or Container? My IDE is JDeveloper.
    The story is as follows. On the one hand, ADF is not free now, and in the JDeveloper Licence Agreement (when downloading JDeveloper) ADF Faces Components are included with another components: "Components" refers to the following Application Development Framework ("ADF") components of the Programs: ..., ADF Faces Components, .... So it seems that I can't use it for free everywhere.
    On the other hand, ADF Faces is open source now (http://oss.oracle.com/trinidad-adf-faces.html), in FAQs (http://www.oracle.com/technology/products/jdev/htdocs/faq_adffaces_apache.html) it's written that JDeveloper is a tool to use with ADF Faces, and in JDeveloper & ADF Pricing FAQ (http://www.oracle.com/technology/products/jdev/htdocs/jdevpricefaq.html ) it's written in the "How will customers know if they are using Oracle ADF?" section it's written:
    You are using Oracle ADF if your system is using one of the following:
    * Oracle ADF Business Components (pka Business Components for Java)
    * The ADF Model layer (creating data controls from Java components, EJBs, or Web services)
    * ADF's data actions or data pages in Struts
    * ADF UIX
    * ADF Swing (p.k.a JClient)
    So, ADF Faces are not mentioned here.
    So, how can I use ADF Faces components for free? Download from Apache - Trinidad project? Or I can use those that come with JDeveloper?
    Thanks in advance.

    Hi,
    ADF Faces is under the ADF licence and is charged for on any non-Oracle Application server environment. If you deploy on OracleAs then ADF licence is included in teh AS licence.
    If you want free components then you need to download Apache Trinidad components. They are open source. You can configure Trinidad for use in Oracle JDeveloper as documented : http://www.oracle.com/technology/products/jdev/howtos/1013/trinidad/trinidad.html
    Frank

  • JHeadstart and ADF Faces

    Oracle annunce EA for ADF Faces. Would new version of JHeadstart use it or stay aligned with JSP and full UIX support?

    The next release of JHeadstart aligns with ADF as included in JDeveloper 9.0.5.x / 10.1.2.
    The EA release of ADF Faces is not yet integrated with the ADF binding layer, so the upcoming JHeadstart-ADF release will not be using ADF Faces yet.
    Once ADF Faces is fully integrated with ADF binding layer(and all the drag-n-drop support), JHeadstart will start generating ADF Faces as View type. This integration is scheduled for JDeveloper release 10.1.3, which I believe is currently scheduled for spring/summer 2005.
    Steven Davelaar,
    JHeadstart Team.

  • Adf-faces-demo.war for 10g - where can I download this demo package?

    based on Oracle JDeveloper 10g (10.1.3) Documentation this package can be downloaded, but it's not there any more. Anyone know where I can download a copy?
    About the ADF Faces Demo Files The ADF Faces component and feature demonstration files are available in adf-faces-demo.war, which you can download from the Oracle Technology Network at
    http://www.oracle.com/technology/tech/java/jsf.html
    or,
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/index.html
    Thanks

    The 10.1.3 version of the file is now linked from
    http://www.oracle.com/technetwork/testcontent/adffaces1013-096465.html
    (under the download section of that page)

  • Support for ADF Faces

    Hi Everyone,
    We are planing to use ADF Facses for our upcoming prjoject. so for that we want some sample application or demonstration because the list of component is available in the oracle site is not very rich may be not updated, how can i get detail information about ADF Faces.
    How to get latest trial version of ADF Faces and how to configure ADF with MYEclipse
    Thanks
    Meraj

    Meraj,
    ADF Faces components are as they show in the JDeveloper 10.1.3.3 component palette. The Apache MyFaces open source project Trinidad contains new components that will be in JDeveloper 11. Note that unlike other vendors, Oracle doesn't make trial versions available but always the full version (we don't mind developers using our stack for longer than 30 days ;-) ).
    To configure ADF Faces in Eclipse, just make sure you have MyFaces or JSF-RI installed in Eclipse and adf-faces-api.jar and adf-faces-impl.jar configured for ADF face. The adf-faces-impl.jar fiel contains the tag libraries
    Frank

  • ADF-Faces: AdfFacesFilter has not been installed  ....but it is!?

    Hello,
    I know this sounds like already discussed but my case is a little different.
    I have got two web applications, one for testing that just contains ADF-Faces and the other one is the actual project with ADF-Faces, Spring(JSF variable resolver), SessionListener, Filter ec.
    In the actual project I get (after first call a faces url) the logging message:
    oracle.adfinternal.view.faces.webapp.AdfFacesFilterImpl verifyFilterIsInstalled
    WARNUNG: The AdfFacesFilter has not been installed. ADF Faces requires this filter for proper execution.
    In the test project with the same ADF-Faces configuration(but only ADF-Faces, no Spring, other Filter or Listener...) in web.xml and faces-config.xml I do not get this message and trees etc. are rendered fine.
    My questions: Could there be a conflict with Spring framework or is there any other pitfall?
    If I comment out SessionListener Counter or LoginFilter, the warning message remains.
    I like to use ADF-Faces but cannot see what's the problem here? Please help.
    Thank You,
    Florian
    Using: ADF-Faces EA19 (adf-faces-api-ea19.jar, adf-faces-impl-ea19.jar, adfshare.jar)
    ########### WEB.XML
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee">
    <display-name>Prototype</display-name>
    <description>Prototype</description>
    <!-- Context Parameter: Use client-side state saving -->
    <context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
    </context-param>
    <!-- Context Parameter: Spring's application context -->
         <context-param>
              <param-name>contextConfigLocation</param-name>
              <param-value>/WEB-INF/daoContext.xml /WEB-INF/serviceContext.xml</param-value>
         </context-param> -->
    <!-- ADF-Filter -->
    <filter>
    <filter-name>adfFaces</filter-name>
    <filter-class>oracle.adf.view.faces.webapp.AdfFacesFilter</filter-class>
    </filter>
    <!-- Filter Mapping ADF-Faces -->
    <filter-mapping>
    <filter-name>adfFaces</filter-name>
    <servlet-name>faces</servlet-name>
    </filter-mapping>
    <!-- Login-Filter -->
    <filter>
    <filter-name>loginFilter</filter-name>
    <display-name>Login Filter</display-name>
    <filter-class>com.company.web.filter.LoginFilter</filter-class>
    <init-param>
    <param-name>forwardPage</param-name>
    <param-value>/index.jsp</param-value>
    </init-param>
    </filter>
    <!-- Filter Mapping Login-->
    <filter-mapping>
    <filter-name>loginFilter</filter-name>
    <url-pattern>/faces/pages/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
    <filter-name>loginFilter</filter-name>
    <url-pattern>/pages/*</url-pattern>
    </filter-mapping>
    <!-- Servlets -->
    <!-- Servlet JSF Impl -->
    <servlet>
    <servlet-name>faces</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
    </servlet>
    <!-- Servlet ADF -->
    <servlet>
    <servlet-name>resources</servlet-name>
    <servlet-class>oracle.adf.view.faces.webapp.ResourceServlet</servlet-class>
    </servlet>
    <!-- Servlet Mapping Faces -->
    <servlet-mapping>
    <servlet-name>faces</servlet-name>
    <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <!-- Servlet Mapping ADF-Resources -->
    <servlet-mapping>
    <servlet-name>resources</servlet-name>
    <url-pattern>/adf/*</url-pattern>
    </servlet-mapping>
    <!--MIME Mapping -->
    <mime-mapping>
    <extension>html</extension>
    <mime-type>text/html</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>txt</extension>
    <mime-type>text/plain</mime-type>
    </mime-mapping>
    <!-- Welcome Files -->
    <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
    <!-- Spring Context Listener -->
    <listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
    </listener>
    <!-- Session Counter Listener -->
    <listener>
    <listener-class>com.company.web.listener.SessionCounter</listener-class>
    </listener>
    <!-- Taglibs -->
    <taglib>
    <taglib-uri>http://www.pickert.de/jrqm</taglib-uri>
    <taglib-location>/WEB-INF/tld/jRQM.tld</taglib-location>
    </taglib>
    <!-- Session timeout in minutes -->
    <session-config>
    <session-timeout>1</session-timeout>
    </session-config>
    </web-app>
    ############### FACES-CONFIG.XML
    <?xml version="1.0" encoding="windows-1252"?>
    <!DOCTYPE faces-config PUBLIC
    "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
    "http://java.sun.com/dtd/web-facesconfig_1_1.dtd">
    <faces-config xmlns="http://java.sun.com/JSF/Configuration">
    <application>
    <default-render-kit-id>oracle.adf.core</default-render-kit-id>
    <variable-resolver>org.springframework.web.jsf.DelegatingVariableResolver</variable-resolver>
    </application>
    </faces-config>

    Can you elaborate what you fixed? I'm running into the same message with a similar setup.
    Thanks,
    Ken

  • ADF Faces with ADF BC

    Hi everyone,
    I'm trying to map a <af:table> to an ADF Business Component. I can retrieve the records and I can also navigate doing Next and Previous, but I cannot do a Delete of a record. Do you know if there's any kind of "work arround" to use ADF Faces with ADF BC to do a delete or update, etc.?
    Here is the code, you can notice the: <af:tableSelectOne> tag to put the radio buttons colums to select which one to delete, and you can also notice the action="#{row.markForDeletion}" for the commandbutton to perform the delete.
    Jonas Jacobi wrote in his web blog on August 16 that he was going to post some samples for this "work arround" but I think he never posted them.
    Here is the code:
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA12/html" prefix="afh"%><%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/ui/jsp/adftags" prefix="adf"%>
    <adf:uimodelreference model="table_testUIModel"/>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/EA12" prefix="af"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <H1>This is a Test</H1>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>my test page</title>
    <link href="css/blaf.css" rel="stylesheet" media="screen"/>
    </head>
    <body>
    <f:view>
    <afh:head title="tableSelectOne Demo"/>
    <af:panelPage>
    <af:table rows="3" var="row" value="#{bindings.CmSvcView1.rangeSet}" first="0">
    <f:facet name="selection">
    <af:tableSelectOne text="Select and ...">
    <af:commandButton text="Delete" action="#{row.markForDeletion}"/>
    </af:tableSelectOne>
    </f:facet>
    <af:column>
    <f:facet name="header">
    <af:outputText value="SvcId"/>
    </f:facet>
    <af:outputText value="#{row.SvcId}"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="SvcNum"/>
    </f:facet>
    <af:outputText value="#{row.SvcNum}" styleClass="OraHeaderSubSub"/>
    </af:column>
    <af:column>
    <f:facet name="header">
    <af:outputText value="SvcName"/>
    </f:facet>
    <af:outputText value="#{row.SvcName}" styleClass="OraHeaderSubSub"/>
    </af:column>
    </af:table>
    </af:panelPage>
    </f:view>
    </body>
    </html>
    Thanks,
    Pablo (sorry for the long post)

    Thank you Gabrielle. At least now I have an excuse to tell my boss why I can't get it to work.
    Any idea when it may be available? Would it be a better idea to implement the table in plain vanilla JSF, and when ADF Faces is ready for ADF BC then do the migration?
    Are there any workarround to this problem?
    Thank you for your time,
    Pablo

  • Externalize the Skin from ADF Faces project

    I have a requirement, where we don't want to bundle Skin(CSS, adf-faces-skins.xml, adf-faces-config.xml files) with the web project. Which would help us to add new skin or change the existing skins.
    I see the CSS file name is different when it renders in the final HTML page. If my file name is 'sni.css' and it is kept in folder 'Web Content/css' but in the output html('/adf/styles/cache/sni-desktop-10_1_3_3_0-en-ie-6-windows-s.css'). How does the name changes here?
    We do this in our old framework by putting CSS files in Web Server. Can we do similiar thing in ADF Faces to externalize the styles? Overriding Faces Listeners or by any other way?
    Similiarly want to externalize images, adf-faces-skins.xml and adf-faces-config.xml also.
    Thanks

    Hi,
    We created a external skin project. WebSkin.war. In this project we put every thing (images, ccs, etc).
    In the others Web projects, into our jsp files we added this line on the header.
    <link rel="stylesheet" type="text/css" media="screen" href="/WebSkin/common/skins/<%=styleBean.getStyleName()%>/screen.css" />
    And (of course) getStyleName give us the current Skin Name (blue, purple, etc)
    But (nothing is perfect).. we are using JBOSS as application server, we didn't test that solution on other platform.
    I hope is not to late ...
    Regards.
    Message was edited by:
    ppasquel

Maybe you are looking for

  • Partial Reconciliation on Payment on Account

    I am working on SAP Business One 2007 A Patch Level 38: I understand the usefulness of Partial Reconciliation but am having the following problems when it is used in conjunction with a "Payment on Account".  Here is the scenario. I have a Customer wh

  • The order of the columns in GROUP BY doesn`t matter?  why?

    I did a little test and find out that the order of the columns in GROUP BY does not matter to ORACLE. Why? How does oracle do GROUP BY exactly? Could anyone show me its processing logic? maybe in pseudo-code? Thanks in advance.

  • DVD on iPad

    I have a DVD made by a local drain company that I would like to show at my Condo Board meeting.  I could take my MacBook to play the movie for all, but I'd rather go "lite" and use my iPad to play back the DVD.  How do I get the DVD files (Video_TS)

  • PreparedStatement use, null check

    I'm using PreparedStatements in a number of queries that probably don't benefit from it and wondering if the problems I'm having are worth the extra I/O efficiency and security benefits. Thoughts? Additionally, I'm having trouble knowing for sure if

  • Kde 4.1 suddenly won't run properly

    I'm not sure what caused it, but KDE 4.1 suddenly won't run properly on one of my machines. It will start to run and die right at the point when the "splash screen" disappears. If I click the popup to make it go away, the desktop will appear for less