Adf faces jar  for jdeveloper 10g

Hi,
i m using jdeveloper 10, i want to use adf (af componant) in my jsf page, so i need adf jar, but i m not able to download them from
"How To Use ADF Faces With JDeveloper 10g" kindly help me how i can download these jar, so that i can use them in my code

Trinidad is a JavaServer Faces component library that is a subproject of Apache MyFaces. (It was formerly known as ADF Faces.)
Refer http://wiki.apache.org/myfaces/from_ADF_to_Trinidad

Similar Messages

  • ADF Faces, BC and JDeveloper 10g: Rendering Dynamic ViewObjects at runtime

    I am trying to make a 10g version of Shay's example (http://www.youtube.com/watch?v=TwIKt7e4vEw).
    JSP code:
    +<!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/html" prefix="h"%>+
    +<%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>+
    +<%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>+
    +<%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>+
    +<f:view>+
    +<afh:html>+
    +<afh:head title="runTest">+
    +<meta http-equiv="Content-Type"+
    content="text/html; charset=windows-1252"/>
    +</afh:head>+
    +<afh:body>+
    +<af:messages/>+
    +<af:form>+
    +<af:table value="#{bindings.DynamicVo.collectionModel}" var="row"+
    +rows="#{bindings.DynamicVo.rangeSize}"+
    +first="#{bindings.DynamicVo.rangeStart}"+
    +emptyText="#{bindings.DynamicVo.viewable ? \'No rows yet.\' : \'Access Denied.\'}"+
    +partialTriggers="make">+
    +<af:column sortProperty="Dummy" sortable="false"+
    +headerText="#{bindings.DynamicVo.labels.Dummy}">+
    +<af:outputText value="#{row.Dummy}"/>+
    +</af:column>+
    +</af:table>+
    +<af:commandButton actionListener="#{bindings.makeVo.execute}"+
    +text="makeVo" disabled="#{!bindings.makeVo.enabled}"+
    +id="make"/>+
    +</af:form>+
    +</afh:body>+
    +</afh:html>+
    +</f:view>+
    *PageDef:*
    +<?xml version="1.0" encoding="UTF-8" ?>+
    +<pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"+
    +version="10.1.3.42.70" id="runTestPageDef"+
    +Package="view.pageDefs">+
    +<parameters/>+
    +<executables>+
    +<iterator id="DynamicVoIterator" RangeSize="10" Binds="DynamicVo"+
    +DataControl="AppModuleDataControl"/>+
    +</executables>+
    +<bindings>+
    +<table id="DynamicVo" IterBinding="DynamicVoIterator">+
    +<AttrNames>+
    +<Item Value="Dummy"/>+
    +</AttrNames>+
    +</table>+
    +<methodAction id="makeVo" InstanceName="AppModuleDataControl.dataProvider"+
    +DataControl="AppModuleDataControl" MethodName="makeVo"+
    +RequiresUpdateModel="true" Action="999"+
    +IsViewObjectMethod="false"/>+
    +</bindings>+
    +</pageDefinition>+
    *Application Module Implementation:*
    +package model;+
    +import model.common.AppModule;+
    +import oracle.jbo.ViewObject;+
    +import oracle.jbo.server.ApplicationModuleImpl;+
    +// ---------------------------------------------------------------------+
    +// --- File generated by Oracle ADF Business Components Design Time.+
    +// --- Custom code may be added to this class.+
    +// --- Warning: Do not modify method signatures of generated methods.+
    +// ---------------------------------------------------------------------+
    +public class AppModuleImpl extends ApplicationModuleImpl implements AppModule {+
    +/**This is the default constructor (do not remove)+
    +*/+
    +public AppModuleImpl() {+
    +}+
    +public void makeVo(){+
    +System.out.println("make vo");+
    +ViewObject vo = this.findViewObject("DynamicVO");+
    +if(vo==null){+
    +System.out.println("vo is null");+
    +}+
    +vo.remove();+
    +System.out.println("Vo removed");+
    +vo = createViewObjectFromQueryStmt("DynamicVo", "SELECT deptno from dept" );+
    +System.out.println("Vo created");+
    +vo.executeQuery();+
    +System.out.println("Vo estimated row count"+vo.getEstimatedRowCount());+
    +}+
    +/**Container's getter for DynamicVo+
    +*/+
    +public DynamicVoImpl getDynamicVo() {+
    +return (DynamicVoImpl)findViewObject("DynamicVo");+
    +}+
    +/**Sample main for debugging Business Components code using the tester.+
    +*/+
    +public static void main(String[] args) {+
    +launchTester("model", /* package name */+
    +"AppModuleLocal" /* Configuration Name */);+
    +}+
    +}+
    *Runtime before clicking button*
    http://i108.photobucket.com/albums/n23/zeoneozero/1.jpg
    *Runtime after clicking button*
    http://i108.photobucket.com/albums/n23/zeoneozero/2.jpg
    *Console*
    +1/11/09 11:26:44 make vo+
    +11/11/09 11:26:44 Vo removed+
    +11/11/09 11:26:44 Vo created+
    +11/11/09 11:26:44 Vo estimated row count7+
    *Error:*
    JBO-25003: Object DynamicVo of type View Object not found
    JBO-25003: Object DynamicVo of type View Object not found
    Will this work with 10g? If so, has anyone tried and succeeded? Any advice is appreciated.
    thanks,
    wes

    the example is in 11g and makes use adf dynamic forms.
    I don´t know if you can make this in 10g

  • ADF faces jar files needed (urgent)

    Hi,
    I have downloaded one sample adf faces application from oracle site, but it does not have the jar files. They are saying that you can download the neccassary jar files from the Oracle Technology Network (OTN) Web site as a .zip archive that contains the tag libraries, documentation, and a Web application example.
    But i was not able to locate the specified zip file in OTN web site. If someone knows please tell me from where should i download the specfied jar file.
    I have downloaded the sample appl from the following link..
    http://www.oracle.com/technology/pub/articles/cioroianu_jsfadf_v4.html
    Thanks in advance..
    Regards,
    Saravanam

    Hi,
    This is a very old how-to that was released during JDeveloper preview. If you go to otn.oracle.com/proucts/jdev --> JSF then you can find the download reference.
    The newer - production class - ADF Faces jar files are not for download separately but are part of Oracle JDeveloper and available in its jlib directory. So you could go download JDeveloper and get adf-faces.jar
    Frank

  • Classroom Courses for JDeveloper 10g

    I'd like you all to know that the first teaching events for our JDeveloper 10g production courses are now scheduled. You can register for the new "Java Programming" course (May 17-21 in Mississauga, Canada) and the "Build Applications with ADF" course (May 24-28 in Reston, VA).
    These first production teaches are "proving" events; a regular schedule at various global locations will follow, after these events are completed. But the above events are an early chance to grab a full week of training.
    You can find details (and register) for JDeveloper 10g classes through this link:
    http://education.oracle.com/web_prod-plq-dad/plsql/show_desc.redirect?redir_type=13&group_id=1128&p_org_id=1001&lang=US&media=1&source_call=
    Regards,
    Glenn. JDeveloper team.

    Hi there,
    I have tried to created a Java Portlet using the Wizard with jdev10G and it did not work. I am welling to try 903 but I cannot find the PDK for it. Yes I have looked all over PortalStudio.oracle.com. Is anyone have the link to download the PDK for jdev903?
    Also I have tried for two days to make the Java Portlet Wizard work with 10G with no luck. Why are they posting somehting that doesn't work? This is really frustrating.

  • Is there a suitable porlet-addin for JDeveloper 10g 10.1.3EA

    Is there a suitable porlet-addin for JDeveloper 10g 10.1.3EA and if so where might I find it.
    The one I found produces the following error:
    Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin
    OR
    Is there a workaround this problem?
    Thanks in advance.

    JDeveloper10.1.2 supports the portlet addin.
    http://www.oracle.com/technology/products/ias/portal/html/jdev.addin.install.guide.html
    A portlet may also be created in JDeveloper 10.1.3 by adding a portlet.xml configuration file to a web application.

  • S there a suitable porlet-addin for JDeveloper 10g 10.1.3EA

    Is there a suitable porlet-addin for JDeveloper 10g 10.1.3EA and if so where might I find it.
    The one I found produces the following error:
    Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin
    OR
    Is there a workaround this problem?
    Thanks in advance.

    JDeveloper10.1.2 supports the portlet addin.
    http://www.oracle.com/technology/products/ias/portal/html/jdev.addin.install.guide.html
    A portlet may also be created in JDeveloper 10.1.3 by adding a portlet.xml configuration file to a web application.

  • Any Portlet Addin for JDeveloper 10g 10.1.3EA ?

    Is there a suitable porlet-addin for JDeveloper 10g 10.1.3EA and if so where might I find it.
    The one I found produces the following error:
    "Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin"
    OR
    Is there a workaround this problem?
    Thanks in advance.

    I have JDeveloper 10.1.3 and installed in a Directory with no spaces, I also have JDK 1.3.1_02
    accedentally I chose "Yes" when the migrate message appeared to me.
    what is the reason behind the Error Message that appears every time I start JDeveloper which is:
    "Severe(2,369): No class def found for addin oracle.webdb.jdev.PortletDevelopmentAddin".
    any Ideas
    for saving time please email me on "[email protected]"
    thanks everybody
    Ramadan Ahmed

  • [Reports]   The best reporting tool for JDeveloper 10g

    Hi,
    Which is the best reporting tool for JDeveloper 10g: JasperReports, Crystal Reports or something else? I want to build parametric and rather complex reports but I don't know which tool offers more features, flexibility, ease of use , ... . I've built some simple parametric reports using JasperReports and JDeveloper 10g but I think it's not so productive and may need something more, maybe iReport. Does anyone have any ideas?
    S/\EE|)

    Hi Saeed,
    I'lm using Jasper too, and here is an example of how i pass to it some variables:
         <parameter name="theWantedId" isForPrompting="false" class="java.lang.Integer"/>
         <queryString><![CDATA[SELECT field1, field2 from table1 WHERE table1.field1 = $P!{theWantedId}]]></queryString>And in a bean (or other java code from which the template is called)
            Map parameters= new HashMap();
            parameters.put("theWantedId", findSelectedId()); // return the ID of the object to print
            JasperDesign design =
                JRXmlLoader.load(myTemplate); // First load template from the Blob table in an inputstream
            JasperReport report =
                JasperCompileManager.compileReport(design);
            InitialContext initialContext = new InitialContext();
            DataSource ds = (DataSource)initialContext.lookup("java:comp/env/jdbc/MYDATASOURCEConnectionDS");
            Connection conn = ds.getConnection();
            JasperPrint print =
                JasperFillManager.fillReport(report, parameters, conn);Hope that can help, if you need more information please ask,
    Best regards,
    Tif

  • Ann: New MapViewer Extensions for JDeveloper 10g

    We are pleased to annouce the availability of a new MapViewer extension kit for JDeveloper 10g (9.0.5.1 or later versions).
    Please download the kit from the following MapViewer page:
    http://otn.oracle.com/software/products/mapviewer/index.html
    Thanks
    LJ

    Yes currently the extension is strictly a top-level browsing tool with no mapping metadata drill down/editing capabilities.
    Those features are being planned for the next major release of this extension kit, as part of our major effort to rewrite the map definition tool. there is however no ETA yet.

  • [PM] Looking for JDeveloper 10g preview users

    The JDeveloper Product Management team is looking for people who are currently using the preview version of Oracle JDeveloper 10g to develop their soon to be production applications.
    We want to get your feedback on a some questions.
    If you are using JDeveloper 10g Preview to develop what would become a production application please email us at:
    Jdeveloperbeta_us@ oracle.com , with the subject: Currently Using JDeveloper 10g.
    Thanks,
    Shay.
    Oracle Corporation.

    I am using JD 10g!
    I am following the steps to the tutorial: Developing J2EE application using EJB, Struts, JSP and ADF Databinding.
    JD10g does not bring up the New Gallery as the step labeled: Reverse engineer tables as CMP beans instructs.
    How can I can if my install in correct?
    How can I solve this issue?
    Thanks
    Patrick

  • JSP ADF Tree Binding in JDeveloper 10g

    I am attempting to create a JSP hierarchical tree structure in JDeveloper 10g. I can successfully create the tree structure for two levels only. I need to be able to create a tree 5 or more levels deep. I have created an ADF Master Detail structure using the sample OE schema for three levels and to the best of my knowledge, I have set up the rules correctly using the Tree Binding Editor accessed by a creating a new binding under Create Binding > Input > Tree for the UIModel of the test web application I created. However, in the JSP page, I can only access the first two levels. The code I'm using is as follows:
    <c:forEach var="masterRow" items="${bindings.CustomerOrdersTree.rootNodeBinding.children}">
    <c:out value="${masterRow.CustomerId}"/> -
    <c:out value="${masterRow.CustFirstName}"/>
    <c:out value="${masterRow.CustLastName}"/><br>
    <c:forEach var="ordersChildRow" items="${masterRow.children}">
    <c:out value="${ordersChildRow.OrderId}"/><br>
    <c:forEach var="Row2" items="${ordersChildRow.children}">
    </c:forEach>
    </c:forEach>
    </c:forEach>
    The first two levels display fine, but the third level is not displaying. What syntax should I be using to traverse further levels of the tree binding? Is it even possible? Thanks.
    Note: I didn't connect any event handlers for collapsing or expanding data. I'm just trying to display everything right now.

    I have the nodeExpanded attribute on the second level, set up exactly as the first level. I have a toggleSelection method on the second level (View Object) as well. I've stepped through this method and the arguments are passed correctly and the transient attribute is updated correctly. I'm calling this method through a second DataAction like treeHandler, and this works as far as calling the correct method with the correct argument values.
    The breakdown occurs back on the JSP. Even though the transient attibute gets populated accurately according to the toggleSelection method, when accessing that attribute on the JSP, it returns a null value. I can access all the other attributes from the same View Object, except for the transient attribute. I'm not sure what else to try.
    I'm starting to doubt this is even the best solution for a tree structure. With the way Oracle's example is set up, you would have to nest so many if-then structures in order to keep track of all the nodeExpanded attributes and which data to display or not, and I anticipate view state issues and caching problems.

  • Adf bc jar for base entity classes and extending them existing  project

    Hi,
    I am using jdev 11.1.1.0 and have created a base workspace/project and adf jar for my base entity classes.
    1. I can consume this base adf bc jar in a separate new consuming workspace and create VO based on base bc classes or create new EOs that extend base bc entity classes.
    2. Furthermore, for an existing consuming project that earlier included src/ of base entity (BC components), i can remove the dependency on bc source and bring in this new adf jar and everything including the view controller and the service/datacontrol works fine.
    The issue i am running into is as follows.
    - In the existing project (#2) above i try to create a couple of entities based on entities in my base jar; associations are automatically brought in. Note i am not overriding any attributes. My intent here is to generate .java and implement some code.
    - I then try to make my existing VOs based on the newly extended entity (VO overview->Entity Objects-> Shuttle NewEntity from Available to Selected)
    - I then try to remove the old EO from selected under VO overview->Entity Objects->Shuttle OldEntity from Selected back
    - I get a warning dialog box that says something to the effect that some viewlinks are dependent on these old EOs in this consuming project.
    - I tried to laboriously analyzed dependencies and it this dialog box does not make any sense as I have already extended EOs and the tooling should be able to let me use these
    My questions
    - Why I am not able to remove old entities from VO dependencies
    - Is it ok to leave the old EOs in "Selected" along with the newly extended EO ? What are the implications for this?
    - I also thought about extending base associations, but did not go anywhere.
    In general, I am ok with consuming an ADF BC jar that has entities etc. but not clear about removing dependencies of base EOs on VOs when entities are extended and consumed in a pre-existing project that used base entities.
    I can send a project if any PM is willing to take a look at it.
    Thanks,
    ps:
    I have already gone over the following info
    http://technology.amis.nl/blog/215/organization-of-bc4j-domain-eo-and-business-vo-package
    .. wants to create an enterprise data model in BC4J, reflecting the Enterprise Data Model set up in the RDBMS. All (or at least most) business rules will be implemented in the Middle Tier – to take the load of the database and also allow developers not comfortable with PL/SQL to define and maintain the business rules. It is clear that this means that all applications that need to access – and manipulate – the database, need to go through the BC4J foundation layer. Martijn wants to define the Entity Objects – and their business rules – only once and share that definition between different projects. Each projects can create its own ViewObjects on top of these shared Enterprise Entity Objects.
    http://radio-weblogs.com/0118231/2005/09/29.html
    I am currently working on a project for a partner where we will be using ADF BC as our model layer for a large application. In order to keep the footprint of each application module down to a reasonable size, we are intending to create a number of separate 'root' application modules for each functional area of the application. Within, these 'root' application modules we will then use nested application modules to further partition the application. All of the application modules will be accessing the same datasource and will need access to the same database objects.
    In order to separate our code between the development team and into function areas, our initial thoughts were that we would create an ADF BC model project containing Entity Objects for all of the database tables e.t.c. as these are common amongst all functional areas. We have configured all of the EOs for validation rules, defaulting values and extending doDML() as appropriate. Happy at this stage we then created a simple .jar file to deploy all of the definitions. Upon creating a new ADF BC project for each functional area we added the jar file as a library import into the new project. However when we the tried to create some new View Objects via the JDev Wizard we were unable to see the imported Entity Objects.
    Is the only way to share Entity Object definitions between different ADF BC projects to manually copy the source definition files into the new projects src directory? Since this would mean multiple copies of the same components, it could prove to be a maintenance nightmare.Is there a way of doing it without creating multiple copies of the same object definitions?
    The developer is spot on in their ideas of layering and reuse, and even has created a library for their reusable entities. This last step is not something everyone thinks to do. The missing step is known as "importing" components, so with that one extra bit of knowledge under his belt, he should be able to do exactly what he envisions. My little article called Difference Between Adding and Importing Business Components tries to explain the difference and gives the menu options to choose to perform the importing.
    Difference between adding and importing BC4J
    http://radio-weblogs.com/0118231/stories/2005/08/11/differenceBetweenAddingAndImportingBusinessComponents.html
    Working with Libraries of Reusable Business Components
    http://download.oracle.com/docs/cd/B32110_01/web.1013/b25947/bcadvgen.htm#CHEFECGD

    Hi,
    since you followed the OC4J developer guide I think this question might be better handled there as well
    OC4J
    So in case you don't get an answer here on the forum, try it on the OC4J forum
    Frank

  • OAF tutorial for Jdeveloper 10g is showing 9i version options

    Hi,
    I have been finding so hard to cope up with the OAF tutorial with Jdeveloper 10g. It does not include the options in the screenshots which are in 10g. I think they haven't updated it for this version and they are from 9i. It is very hard to find the same option in 10g version for example, i am not able to find out "Business Component Package wizard" in 10g. Please help me in finding out the right tutorial for 10g version.
    Thanks,

    Yes, the tutorials for 10G Jdev are not the updated ones and menus to work with are a bit changed now.
    We have discussed this earlier also. Check on the old threads and you will find the correct navigation for BC4J components. Right now I don't have a r12 based jdev on my system and don't remember the exact navigation.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Display Tag for JDeveloper 10g. "Nothing found to Display"

    Hello everyone. I am currently using JDeveloper 10g. I already add the display tag in the library but when I try to use it always shows nothing to display.
    Can someone help me?
    this is my code
    <%@ taglib uri="http://java.sun.com/jstl/core" prefix="c"%>
    <%@page import="java.sql.*"%>
    <%@page import="java.util.*"%>
    <%@ taglib uri="http://displaytag.sf.net" prefix="display"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>untitled</title>
    </head>
    <body>
    <%
    String method = request.getParameter("method");
    if (method == null) {
    List testData = new ArrayList();
    Map map1 = new TreeMap();
    map1.put("id","1");
    map1.put("firstName","Bill");
    map1.put("lastName","Gates");
    testData.add(map1);
    Map map2 = new TreeMap();
    map2.put("id","2");
    map2.put("firstName","Scott");
    map2.put("lastName","McNealy");
    testData.add(map2);
    Map map3 = new TreeMap();
    map3.put("id","3");
    map3.put("firstName","Bill");
    map3.put("lastName","Joy");
    testData.add(map3);
    session.setAttribute( "test", testData);
    } else {
    // grab the testDate from the session
    List testData = (List) session.getAttribute("test");
    String useMe = request.getParameter("id");
    if (useMe != null && method.equals("Delete")) {
    // figure out which object it is and delete it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    testData.remove(m);
    %><div class="message">Delete succeeded!</div><%
    break;
    } else if (method.equals("Save")) {
    // figure out which object it is and update it
    for (int i=0; i < testData.size(); i++) {
    Map m = (TreeMap) testData.get(i);
    String id = m.get("id").toString();
    if (useMe.equals(id)) {
    m.put("firstName", request.getParameter("firstName"));
    m.put("lastName", request.getParameter("lastName"));
    testData.set(i, m);
    %><div class="message"><h2>
    <b><c:out value=" "/></b> updated successfully!
    </h2></div><%
    break;
    } else if (method.equals("Add")) {
    Map map4 = new TreeMap();
    // generate a random number
    Random generator = new Random();
    String id = String.valueOf(generator.nextInt());
    pageContext.setAttribute("id", id);
    map4.put("id", id);
    map4.put("firstName", "");
    map4.put("lastName", "");
    testData.add(map4);
    %><c:redirect url="request.jsp">
    <c:param name="id" value=""/>
    <c:param name="method" value="Edit"/>
    </c:redirect>
    <%
    session.setAttribute( "test", testData);
    %>
    <c:set var="checkAll">
    <input type="checkbox" name="allbox" onclick="checkAll(this.form)" style="margin: 0 0 0 4px" />
    </c:set>
    <form name="editForm" action="request.jsp">
    <c:if test="false">
    <input type="button" onclick="location.href='request.jsp'" class="button"
    value="Reset List" />
    </c:if>
    <c:if test="false">
    <input type="submit" name="method" value="Save" class="button" />
    </c:if>
    <input type="submit" name="method" value="Edit" class="button"/>
    <input type="button" name="method" value="Add" class="button" onclick="location.href='?method=Add'" />
    <input type="submit" name="method" value="Delete" class="button" />
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>
    </form>
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    </body>
    </html>
    Edited by: 856423 on May 3, 2011 11:48 PM
    Edited by: 856423 on May 4, 2011 12:07 AM

    thanks for your reply.
    I am pretty sure that the list where I get the data contains values. I tried it by outputting the in ordinary table as shown here:
    <table>
    <c:forEach items="${test}" var="test" >
    <tr>
    <td>
    <c:out value="${test.id}"/>     
    <c:out value="${test.firstName}"/>
    <c:out value="${test.lastName}"/>
    </td>
    </tr>
    </c:forEach>     
    </table>
    It outputs properly but when I tried this, it just output NOTHING FOUND TO DISPLAY.
    <display:table name="{firstName=Bill, id=3, lastName=Joy}" id="test" class="list">
    <display:column style="width: 5%" title="checkbox">
    <input type="checkbox" name="id" value="<c:out value='${test.id}'/>" <c:if test="${param.id==test.id and param.method!='Save'}">checked="checked"</c:if> style="margin: 0 0 0 4px" onclick="radio(this)" />
    </display:column>
    <display:column title="First Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="firstName" style="padding: 0"
    value="<c:out value="${test.firstName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.firstName}"/></c:otherwise>
    </c:choose>
    </display:column>
    <display:column title="Last Name">
    <c:choose>
    <c:when test="${param.method == 'Edit' and param.id == test.id}">
    <input type="text" name="lastName" style="padding: 0"
    value="<c:out value="${test.lastName}"/>" />
    </c:when>
    <c:otherwise><c:out value="${test.lastName}"/></c:otherwise>
    </c:choose>
    </display:column>
    </display:table>

  • Where can I download odmapi.jar  for Oracle 10g Release 2 (10.2.0.1)

    Hi,
    I've just installed 10g DB Release 2 (for Linux) and now I want to explore the Decision Trees feature of Data Mining (as in the presentation of Robert A. Habertroh in OTN). However when I use Data Miner connect to this new DB, it said "Cannot connect to ODM server". There is no directory odm under my $ORACLE_HOME.
    BTW: I download the from odmapi.jar http://www.oracle.com/technology/products/bi/odm/odminer.html, but now it said there is odmapi.jar for 10.1.0.4.0 only. If I use this Data Miner to 10gR1 is OK.

    Hi,
    I've just installed 10g DB Release 2 (for Linux)
    and now I want to explore the Decision Trees feature
    of Data Mining (as in the presentation of Robert A.
    Habertroh in OTN). However when I use Data Miner
    connect to this new DB, it said "Cannot connect to
    ODM server". There is no directory odm under my
    $ORACLE_HOME.
    BTW: I download the from odmapi.jar
    http://www.oracle.com/technology/products/bi/odm/odmi
    ner.html, but now it said there is odmapi.jar for
    10.1.0.4.0 only. If I use this Data Miner to 10gR1 is
    OK.Hi Mark,
    Thanks for the promptly reply.
    I want to test the new features of ODM 10.2 as a "proof-of-concept" project. So could you inform when this will be available in OTN ?
    Thx

Maybe you are looking for

  • Access an interface node : the mapping has not been completed

    Hello all, by getting an element of interface-node within a component I get follow error message "the mapping to node COMPONENTCONTROLLER.1.INIT_DATA" has not been completed" Can anybody say me, what does it mean? Some more information (in case for s

  • 2 pc's and Itunes

    I have a home pc(windows) using latest Itunes. I have recently purchased a 500gb network attached storage drive. I have moved all music to the new drive and have access and to the itunes through the original "home" pc. I have one ipod video 30bg conn

  • Does a 9-Pin to 6-Pin FireWire Cable carry power to the device?

    I have a VHS to Digital Converter ADVC 55 which has a 6 pin Firewire out which takes its power from the 6 pin firewire on the computer. If I buy one of these : Belkin 9-Pin to 6-Pin FireWire Cable Would this carry the the power to the device from my

  • Transfer of On-Line registration for Toshiba Laptop

    What is the procedure for transfer of Online Registration for Toshiba Laptop when I bought from a delaer who has already registered on his name.

  • Check Lot Configuration

    Experts, Is there any place we need to mention the length of the check lot while configuring house banks ? The reason i am asking this is i am configuring check lots for a house bank and i get this error when it is 7 digits long i.e 7000000 to 799999