Jdeveloper 11g 11.1.2.3.0 adf template

Hi,
I have been trying to create a template which is browser friendly, and I am having issues with the components.
I have tried to use these components:
if used a panel group layout- horizontal and then panel stretch layout as a child component- it doesn't stretch according to the browser but if reduced the browser window size after running the page it gives a scroll bar and works fine.
if used a panel stretch layout and panel group layout as a child component it does stretch with different browsers dynamically but if reduced the window size it doesn't give a scroll bar instead all the images and text gets mixed up or something.
Could someone please tell me the right components to use which would stretch along correctly with every browser?
Thanks,
Sue

Thanks for the reply Timo.
The issue is right now I am using a Panel Stretch Layout as a parent component and within that is one more Panel Stretch Layout, here I am using Panel Stretch Layout again as a child instead of a group layout because I am using all the facets (top, bottom,start,end) in the Stretch layout right now which I require.
And this is stretching the page to fit any browser but the only issue is if the browser window is reduced, instead of giving a scroll bar by default it just collapses everything within in a messy way. Please let me know a solution to this.
Thanks,
Sue

Similar Messages

  • Jdeveloper 11g team development model when develpoing ADF JSF application.

    We have a application include five nearly 10 screens developed using J dev 11g.
    Our application conteins model and view projects.
    We want some of our developer develop some of the screen of project and other programmer develop the other screens. Just one developer responsible from Model projects.
    We shared responsibility between programmers such as.
    Programmer1 --> input.jspx
    Programmer2 --> edit.jspx
    We gave programmer projects files. They develop the new screens.
    But When we want to combine the screen, some of the shared files suchas (databinding.cpx) couses problems.
    How can we manage this kinds of situations. We don't want to create a new projects for each screen.
    We are using cvs. But shared files couses problems in CVS also.
    is there any metodology you recommend ?
    Thanks.

    Hi,
    Many of our users work in this same way - one application, one model project and one view/controller project. As you are using CVS I would suggest the following:
    1. Have each developer check out the whole application, not just the project
    This is because
    a. there are dependencies between the model and VC project
    b. many of the files also have dependencies (Java/XML metadata, binding, pagedef....)
    2. Make use of Pending Changes
    a. use outgoing changes to ensure that you check in all changed files
    b. be careful that all your outgoing changes are properly checked in - as CVS does not do atomic commits you can experience the situation where some file dependencies are not check in (for example if a network failure). SVN does do atomic commits, by the way
    c. use incoming changes to see changes that have been checked in by other developers - this allows you to do a Compare of files such as DataBindings.cpx to see what changes have been made and, if necessary, to discuss with the other developer prior to doing an update
    3. Use JDevelopers Merge Conflict resolution functionality to merge any conflicts in files
    4. If you are using Task Flows consider having one developer who is responsible for adding/editing them
    a. The information that is shown on the design view is taken from the source XML file - so these will need to be merged if multiple users check in
    b. There is a diagram file associated with each task flow (eg adf-config.adfc_diagram) - this holds the x.y postional information of each shape on the diagram. If a diagram is edited by multiple users it can be complicated to decide which positional info should take precedence
    Can you give me an example of the problems you are experiencing with the data binding file?
    regards
    Susan
    www.susanduncan.blogspot.com

  • How to add adf faces in component pallete of jdeveloper 11g?

    how to add adf faces in component pallete of jdeveloper 11g?

    Hi,
    the replacement of ADF Faces HTML components in JDeveloper 11 is Trinidad. For existing applications, a migration path will be provided in JDeveloper 11 production. I wouldn't recommend configuring ADF Faces in JDeveloper 11.
    You an configure ADF Faces Components in JDeveloper 11 by :
    - Tools --> Manage Libraries
    - Create a User Library
    - select ADF Faces adf-faces-impl.jar
    - Enure the namespace is not af or afh but something different to not cnflic with teh ADF Faces RC components
    Note that adding the ADF Faces components to the component palette will not make them show in the ADF binding context menu nor will it automaticaly set up the web.xml file. The components are available as any other JSF library set
    Again, I wouldn't go this way ;-)
    Frank

  • How to get multiple out parameters from a pl/sql stored procedure in ADF Jdeveloper 11g release2

    I´m trying to call from AppModuleImpl a stored procedure from my oracle DB which receives one input parameter and returns 5 out parameters. 
    I´m using jdeveloper 11g release2  ADF and I have created a java bean "ProRecallPlatesBean " with the atributes and accesors and I serialize it. just like in this article http://docs.oracle.com/cd/E24382_01/web.1112/e16182/bcadvgen.htm#sm0297
    This is my code so far:
    public ProRecallPlatesBean getCallProRecallPlates(String numPlates) {
    CallableStatement st = null;
    try {
              // 1. Define the PL/SQL block for the statement to invoke
              String stmt = "begin CTS.Pk_PreIn.proRecallPlates(?,?,?,?,?,?); end;";
              // 2. Create the CallableStatement for the PL/SQL block
              st = getDBTransaction().createCallableStatement(stmt,0);
              // 3. Register the positions and types of the OUT parameters
              st.registerOutParameter(2,Types.VARCHAR);
    st.registerOutParameter(3,Types.VARCHAR);
    st.registerOutParameter(4,Types.VARCHAR);
    st.registerOutParameter(5,Types.VARCHAR);
    st.registerOutParameter(6,Types.VARCHAR);
    // 4. Set the bind values of the IN parameters
    st.setString(1,numPlates);
    // 5. Execute the statement
    st.executeUpdate();
    // 6. Create a bean to hold the multiple return values
    ProRecallPlatesBean result = new ProRecallPlatesBean();
    // 7. Set values of properties using OUT params
    result.setSpfVal(st.getString(2));
    result.setTransportTypeVal(st.getString(3));
    result.setTransportCompanyVal(st.getString(4));
    result.setCompanyDescrVal(st.getString(5));
    result.setDGAPrint(st.getString(6));
    // 8. Return the result
    return result;
    } catch (SQLException e) {
    throw new JboException(e);
    } finally {
    if (st != null) {
    try {
    // 9. Close the JDBC CallableStatement
    st.close();
    catch (SQLException e) {}
    In Jdeveloper I went into AppModule.xml JAVA>Client Interface section and expose "getCallProRecallPlates" Then I can see "getCallProRecallPlates" in Data Controls, I drag and drop it to a JSF page, an input text component and a button are generated in order to put in there the procedure input parameter (numPlates).
    I don't know if I'm on the right track.
    When I click the button, the "result" variable is supposed to be filled with data from the stored procedure. I want each of those values to be displayed in Output text or input text adf components but I dont know how. Thank you very much in advance I´m a newbie and i'll appreciate your help!

    What version are you on?
    Works fine for me on my 11g:
    SQL> create or replace procedure testxml (clob_out out clob)
      2  is
      3     l_clob   clob;
      4     l_ctx    dbms_xmlquery.ctxhandle;
      5  begin
      6     l_ctx := dbms_xmlquery.newcontext ('select * from dual');
      7     l_clob := dbms_xmlquery.getxml (l_ctx);
      8     clob_out := l_clob;
      9     dbms_xmlquery.closecontext (l_ctx);
    10  end testxml;
    11  /
    Procedure created.
    SQL>
    SQL> variable vout clob;
    SQL>
    SQL> exec testxml (:vout)
    PL/SQL procedure successfully completed.
    SQL>
    SQL> print vout
    VOUT
    <?xml version = '1.0'?>
    <ROWSET>
       <ROW num="1">
          <DUMMY>X</DUMMY>
       </ROW>
    </ROWSET>But definitely you can optimize your proc a bit: Try
    create or replace procedure testxml (clob_out in out nocopy clob)
    is
       l_ctx    dbms_xmlquery.ctxhandle;
    begin
       l_ctx := dbms_xmlquery.newcontext ('select * from dual');
       clob_out := dbms_xmlquery.getxml (l_ctx);
       dbms_xmlquery.closecontext (l_ctx);
    end testxml;
    /

  • ADF - Multple View Objects in one ADF table - Jdeveloper 11g

    Hi,
    I'm using Jdeveloper 11g, is there a way to use multiple view objects in one ADF table? And if so, do you have an example?
    In my case the view objects are not based on a database table they were created based on an ESB wsdl, one is for person and one is for address.
    Any information or pointers you could provide would be appreciated.
    Thanks!

    Hi,
    That would be a good solution, however, I'm supposed to see if there is a way to use the VOs that were created for person and address. Even better if the solution requires little coding.
    Is it possible to combine these two VOs into a single VO to use with an ADF table or to use both of them in a single table? Or is there some other solution that would enable me to use the person and address VOs in a similar manner?
    Thanks!

  • How To create ADF Search form in JDeveloper 11g 11.1.1.0.1

    Hi,
    I am using JDeveloper 11g 11.1.1.0.1 , in which i tried creating an ADF search form that has Find and Execute Buttons.
    I created the same ADF search form using JDeveloper 11g TP3 and TP4 wherein it works fine but not in JDeveloper 11g 11.1.1.0.1.
    Scenario....
    I dragged a read only view object on to the jspx page as ADF Search Form and dragged the same as Read only table.
    After doing this if i run the application the search functionality does not happen .
    ( I click on the find button and enter the condition and then click on the execute button. records does not get filtered based on that condition specified.)
    But when the same steps is done in 11g TP3 and TP4 the search functionalty works fine.
    Can someone suggest me what is the issue.
    Is this a bug in the new release.
    regards
    vinitha

    reply is in this id
    ADF Searchform with find and execute buttons in JDev 11.1.1.0.1 studio edi.

  • How to work with Bangla in ADF (Jdeveloper 11g Release 2)

    Hi
    I am Jahid From Bangladesh. Recently I am working with ADF (Oracle Jdeveloper 11g). I am working with a project like newsroom service. I need to extract bangla and other language text from other site. So i need to work with Multiple language in ADF specially with Bangla. Can anybody help me specifically step by step. I am new in ADF just beginner.
    Thanks in advance.
    Jahid
    Analyst Programmer
    IBCS-PRIMAX (Bangladesh) Ltd.

    You application character set should be unicode
    this can help http://download.oracle.com/docs/cd/E12839_01/web.1111/b31973/af_global.htm#CHDGCAFI

  • 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

  • How to implement adf skins in JDeveloper 11g

    How to integrate CSS in ADF using JDeveloper 11g without Trinidad.

    Is there any particular reason for NOT wanting to use the trinidad-config.xml? Using Jdev11g, it is very easy, requires no extra jars and have no external dependencies. Also, its [better |http://technology.amis.nl/blog/4169/adf-11g-why-use-skinning-why-not-use-simple-external-css-stylesheets] to do it using skins.
    Julian.

  • Jdeveloper 11.1.1.2.0 with ADF 11g.  add a adf button like ADD(+)

    Hi,
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I'm display'g view object i.e, i drag some xxxvo1 from datacontrol and drop on jsf with from - i selected ADF form. Now i add a adf button like ADD(+) on top of the panel form.
    here when i fire Add button , i want to add the same set of input text box with label of ADF form i mean the above i have created ADF form.
    like
    ADF FORM
    + --> ADD BUTON
    EMPNO ________
    EMPNAME ______
    EMPDEPT ____
    when i fire "+" ADD BUTTON
    + -- > ADD BUTTON
    EMPNO ________
    EMPNAME ______
    EMPDEPT ____
    EMPNO ________
    EMPNAME ______
    EMPDEPT ____
    i hope above example give some idea.
    thanks in advace

    See the example code as below. I use the countries table from HR schema.
    <af:table value="#{bindings.CountriesRO1.collectionModel}" var="row"
    rows="#{bindings.CountriesRO1.rangeSize}"
    emptyText="#{bindings.CountriesRO1.viewable ? 'No data to display.' : 'Access Denied.'}"
    fetchSize="#{bindings.CountriesRO1.rangeSize}"
    rowBandingInterval="0" id="t1" columnSelection="none"
    rowSelection="none" horizontalGridVisible="false"
    verticalGridVisible="false" contentDelivery="immediate"
    contextMenuSelect="false">
    <af:column sortProperty="CountryId" sortable="false"
    id="c2" >
    <af:panelFormLayout id="pfl1">
    <f:facet name="footer"/>
    <af:inputText value="#{row.bindings.CountryId.inputValue}"
    label="#{bindings.CountriesRO1.hints.CountryId.label}"
    required="#{bindings.CountriesRO1.hints.CountryId.mandatory}"
    columns="#{bindings.CountriesRO1.hints.CountryId.displayWidth}"
    maximumLength="#{bindings.CountriesRO1.hints.CountryId.precision}"
    shortDesc="#{bindings.CountriesRO1.hints.CountryId.tooltip}"
    id="it2">
    <f:validator binding="#{row.bindings.CountryId.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.CountryName.inputValue}"
    label="#{bindings.CountriesRO1.hints.CountryName.label}"
    required="#{bindings.CountriesRO1.hints.CountryName.mandatory}"
    columns="#{bindings.CountriesRO1.hints.CountryName.displayWidth}"
    maximumLength="#{bindings.CountriesRO1.hints.CountryName.precision}"
    shortDesc="#{bindings.CountriesRO1.hints.CountryName.tooltip}"
    id="it1">
    <f:validator binding="#{row.bindings.CountryName.validator}"/>
    </af:inputText>
    <af:inputText value="#{row.bindings.RegionId.inputValue}"
    label="#{bindings.CountriesRO1.hints.RegionId.label}"
    required="#{bindings.CountriesRO1.hints.RegionId.mandatory}"
    columns="#{bindings.CountriesRO1.hints.RegionId.displayWidth}"
    maximumLength="#{bindings.CountriesRO1.hints.RegionId.precision}"
    shortDesc="#{bindings.CountriesRO1.hints.RegionId.tooltip}"
    id="it3">
    <f:validator binding="#{row.bindings.RegionId.validator}"/>
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.CountriesRO1.hints.RegionId.format}"/>
    </af:inputText>
    </af:panelFormLayout>
    </af:column>
    </af:table>

  • JDeveloper 11g & ADF: supported version of svn server/client question

    Hi all,
    I would like to setup a repository for our dev team, we are coming from jdev 10g with svn server 1.3.2 and tortise svn 1.4.8. After reading through John Stegeman's ADF Development Essentials documents, I noticed this article was published back in 2008 and the supported version at that time was 1.4x. What is the current supported svn server and client (i would like to use tortise svn in conjunction with jdev plugin) version for JDeveloper 11g?
    Thanks,
    Wes

    Check out this: http://www.oracle.com/technetwork/developer-tools/jdev/index-091111.html
    For 11.1.1.4:
    Subversion 1.5, SVNKit 1.2
    Subversion 1.6 2 , SVNKit 1.3 2
    GNU CVS 1.11, CVSNT 2.5
    Amit

  • Possibility & Drawback  Using JDeveloper 11g ADF Faces with Oracle 10g DB

    We are new to ADF Faces, would like to use JDeveloper 11g ADF Faces with Oracle 10g database (Enterprise Edition). As we are new to JDeveloper 11g ADF BC, so we want to know about the Possibility & the Drawback.
    Edited by: eng.shahed on Apr 5, 2010 11:21 AM

    i dont think so any drawbacks using Jdeveloper with any database.....its a open product ... You can use it with Sybase, MySQL, Oracle etc etc..

  • Where is ADF FACES HTML tags in JDeveloper 11g?

    I am using JDeveloper 11.1.1.2.0 for my project. I remembered in 10g I have a list of HTML tags such as, afh:tableLayout, afh:cellFormat, etc under ADF FACES HTML package. However, in new JDeveloper 11g, I could only see ADF Cores and there is no ADF Faces HTML tags. Are they still available in 11g? If so, how I could install those tags in JDeveloper 11g?

    Thanks for your quick response. Actually I am converting a Trinidad project into ADF 11g. In old one, I used a lot of tableLayout components. It seems impossible for me to convert all those tableLayout into ADF 11g layout components in a short period of time.

  • Query on ADF Tree rendering - Jdeveloper 11g

    Hi,
    Am facing issues with Tree component rendering. Please find details below.
    Am using Jdeveloper 11g and have created data controls using plain java objects.
    Issue 1:
    I have a method getEmployees() which contains hierarchical data. Upon dragging this onto UI and on creating tree binding, i am able to see the tree.
    However i can expand only the parent node. Upon clicking on any of the child nodes (i.e Level 1 nodes), i get a blinking icon forever.
    Note that upon selecting the context menu option on root node and on selecting "Expand all", i get the complete tree in expanded format.
    Can anyone suggest as to what might be the issue with node expansion here ?
    Approach 2
    I tried creating Treemodel programatically.
    Please see snippet below:
    public TreeModel getModel() throws IntrospectionException {
    if (_model == null) {
    model = new ChildPropertyTreeModel(instance, "children")
    public boolean isContainer() {
    return ((T)getRowData()).hasChildren();
    return _model;
    By creating tree model in this way, tree node expansion issue is resolved. But i noticed that upon clicking on node for expansion,
    the getChildren() method (i.e the childProperty method) gets invoked multiple times and not once for the specifically expanded node.
    Can anyone please suggest as to why this is happening/possible solution?
    Thanks
    Navin

    Thanks for the reply. I can see the facets in the structure window and can seemingly add components there, but this is not reflected in the Design view for the page. Very strange. When the page is run, none of these components in the Accordion panel facets are displayed...
    I'm using JDeveloper version 11.1.2.1.0.

  • I dont see Jheadstart Forms2ADF in my Jdeveloper 11g

    Hi am very new to Jdeveloper. My requirement is, I want to convert a Oracle form to J2EE. I have downloaded and installed the Jdeveloper 11g. And then I selected the application FUSION WEB APPLICATION(ADF). And when I click on the Model -> New-> Business Tier, I am unable to see Jheadstart forms2ADF tool.
    Someone Please help me how to include this tool and if possible provide me steps with converting forms to J2EE.
    Note: I followed the demo given in Oracle site. But no use.
    Edited by: Karthik GJ on Aug 1, 2010 8:44 PM

    Karthik,
    You can download an evaluation version of JHeadstart 11g through JDeveloper Check for Updates, but that evaluation version does not include the Forms2ADF Generator (see http://blogs.oracle.com/jheadstart/2010/04/jheadstart_11g_evaluation_vers.html ).
    Licensed JHeadstart customers can download the fully functional version of JHeadstart through the Oracle Consulting Supplement Option at http://cso.oracle.com. If you want to purchase JHeadstart licenses, please see http://www.oracle.com/technology/products/jheadstart/files/jheadstart_faq.html#BM3 and contact your local Oracle Consulting representative.
    Hope this helps,
    Sandra Muller
    JHeadstart Team

Maybe you are looking for

  • After IOS 8 update, cannot install or update app

    As my subject mentioned, after the ios 8 update, i cannot install or update app.  I have done everything like calling the tech support, follow their instructions etc.. Some of the things i had done were Soft reset ipad Hard reset ipad logout of itune

  • IDocStatus:Error in ALE service Cross-system company code does not exist

    HI All, I am sending CREMAS04 IDOC from XI to one R/3 system,and in R/3 a vendor should get created in master table. My IDOC is getting posted successfully but in R/3 system I am getting error that IDoc: 0000000000705816 Status: Error in ALE service

  • Lost printer installation cd of deskjet 4480

    unable to do online print outs, need to uninstall and re-install but do not have cd in order to do this.  also having problem with code 10 from MS Teredo tunnelling adapter.. unistalled, rebooted and re-installed and still code 10.. please help.. thx

  • Trouble Viewing iWeb site on dot Mac account

    I have a home office and I also have a studio. When I am at home working, I have no trouble viewing photo pages on my dot mac account from either Safari or Firefox. When I am at my studio, however, I cannot browse my photo pages on Safari nor with Fi

  • Tax code in MIRO Tax tab

    Hi, As of now, MIRO is picking up tax from PO line item. Now I want to add another tax to that line ...so would like to assign one more tax code to that line through taxes tab in MIRO screen - but I am not able to add it...taxes tab is greyed out (on