Implementing Internationalization in Oracle ADF, small problem

Hi all i have simple question,
i cant internationalization Search and Select popup dialog.
I read all document about Implementing Internationalization in Oracle ADF and cant see where are make mistake.
Any way i did:
Create Java class in view project:
public class BLAFBundle_sr extends ListResourceBundle {   
public Object[][] getContents()
return contents;
static final Object[][] contents = {
{"SEARCH_TEXT", "Pretraga"},
{"SIMPLE_SEARCH_TEXT", "Prosta pretraga"},
{"ADVANCED_SEARCH_TEXT", "Napredna pretraga"}
Set faces-config as
<locale-config>
<default-locale>sr</default-locale>
<supported-locale>sr</supported-locale>
</locale-config>
<resource-bundle>
<base-name>SistemskeKlase.BLAFBundle_sr</base-name>
<var>sr</var>
</resource-bundle>
Set my internet explorer on sr language,
Set view project to use Automaticly sync bundle
and default bundle name as SistemskeKlase.BLAFBundle_sr
And nothing happened after building and running project

I think you are using incorrect resource string name in your method
static final Object[][] contents = {
{"SEARCH_TEXT", "Pretraga"},
{"SIMPLE_SEARCH_TEXT", "Prosta pretraga"},
{"ADVANCED_SEARCH_TEXT", "Napredna pretraga"}
}I can't find these strings SEARCH_TEXT,SIMPLE_SEARCH_TEXT,ADVANCED_SEARCH_TEXT in Selectors for Skinning Fusion's ADF Faces Components
http://docs.oracle.com/cd/E21764_01/apirefs.1111/e15862/toc.htm

Similar Messages

  • Implementing Internationalization in Oracle ADF

    Hi All,
    I want to implement Internationalization in Oracle ADF.Please share me some information and links which will be helpful for me..
    Eg:- I have designed a project in ADF with different pages like 1.jsff 2.jsff etc... and for this project i want to implement intenationalization Please help me out if any one has knowledge on this..
    Thanks in Advance
    Irfan Shaikh

    Hi Irfan
    Also check out this samples: https://blogs.oracle.com/jdev11g/entry/internationalizing_strings, http://majid-hussain.blogspot.com/2010/10/internationalization-of-adf-11113.html
    Good luck,
    Juan Camilo

  • Implement dragsort in oracle adf

    Hi,
    I want to implement the drag sort (eg: http://jqueryui.com/sortable/#display-grid) in oracle adf.
    This is my sample code in oracle adf.
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
    xmlns:trh="http://myfaces.apache.org/trinidad/html">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1" title="Sortable">
    <af:form id="f1">
    <af:resource type="css" source="/css/test.css"/>
    <af:resource type="javascript" source="/js/jquery-1.9.1.js"/>
    <af:resource type="javascript" source="/js/jquery-ui.js"/>
    <trh:script id="sx4">
    $(function () {
    $("#sortable").sortable();
    $("#sortable").disableSelection();
    $(function () {
    $("#test").sortable();
    $("#test").disableSelection();
    $(function () {
    $("#sortable1").sortable();
    $("#sortable1").disableSelection();
    </trh:script>
    <af:panelList rows="6" maxColumns="3" id="sortable1"
    listStyle="thumbnail" inlineStyle="list-style-type:none" >
    <af:forEach varStatus="vs" begin="1" end="17">
    <af:panelList rows="6" maxColumns="3" styleClass="span4" id="test"
    listStyle="thumbnail" inlineStyle="list-style-type:none">
    <af:outputText id="ot2" value="#{vs.index} #{vs.count} #{vs.begin}"/>
    </af:panelList>
    </af:forEach>
    </af:panelList>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Can any one help me out...
    I am using JDeveloper 11.1.1.6.0 version.
    Thank you and regards
    Madhava
    Edited by: Madhava Maiya on Apr 18, 2013 2:17 AM

    Hi Frank,
    I am using client side because I did not get any solution using ADF (Also I am new to ADF).
    Also I need display the data in grid, that is why I used panelList.
    I will expalin the thing in simpler way.
    Suppose I have a list of size = 7
    I want to display the data of each list in grid format mentioned below:
    1 2 3
    4 5 6
    7
    For the above requirement I have used panelList. The only thing I want to do is to use drag sort and make changes in the grid. After refreshing the page the original grid should display.
    If any thing can be done using ADF is well and good for me.
    Thanks
    Madhava

  • Trying to implement cross-site cookies - 2 small problems

    I am trying to track cookie across two of my domains. So when a user comes to www.windwardreports.com I not only create a cookie for that domain, but I also want to create the same cookie on windward.net.
    So I created a servlet named track and in www.windwardreports.com/index.html I placed <img src=� http://store.windward.net/track/bitmap.gif?sourceid=12345�/>. (I do this using a javascript that does a document.write() as the sourceid value is unique for each contact.)
    And in the servlet, my code is (image read removed):
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
              Cookie [] cookies = request.getCookies();
              // get the parameters
              for (Iterator it=request.getParameterMap().entrySet().iterator(); it.hasNext(); ) {
                   Map.Entry entry = (Map.Entry) it.next();
                   String key = ((String) entry.getKey()).trim();
                   if (key.length() == 0)
                        continue;
                   String [] values = (String[]) entry.getValue();
                   // create a cookie
                   Cookie ck = new Cookie(key, values[0].trim());
                   ck.setDomain(�.windward.net�); // tried with and without this line
                   ck.setMaxAge(24 * 60 * 60 * 365 * 5);
                   log.info("Added cookie: " + key + "=" + values[0]);
                   response.addCookie(ck);
              // return a 1x1 image � it�s in data[]
              response.setContentLength(data.length);
              response.setContentType("image/gif");
              OutputStream out = response.getOutputStream();
              out.write(data);
              out.close();
         }But it�s not working as I expect. Two problems (tested from 3 computers):
    Problem 1: When I go to www.windward.net (I have it there for testing) it puts the cookies I set directly in dave@windward[1].txt. But it puts the cookies from the tracking servlet in dave@track[1].txt
    The contents of dave@track[1].txt is:
    sourceid
    1127147897483_633
    store.windward.net/track/
    1536
    2950874112
    30103378
    1412172704
    29736251
    *But this cookie is not passed back to subsequent calls to www.windward.net.
    Question: How do I get it to put these cookie values in dave@windward[1].txt instead of dave@track[1].txt.
    Problem 2: When I go to www.windwardreports.com, nothing is stored unless I go in I.E. to Tools, Internet Options, Privacy, Advanced, and check Override automatic cookie handling.
    If I do set that, then I have the same issue as problem 1 � it goes in dave@track[1].txt instead of dave@windward[1].txt.
    Question: How do I get it to set these cookie values from a different domain under standard IE settings?
    Thanks � dave
    [email protected]

    I am developing a simple client/server SSL app using sdk 1.4 (no SSLEngine) and am faced with the same problem. Could anybody track down the problem further?

  • Oracle ADF Data Control With Java List

    Hello
    I have a question regarding Data Controls that are based on Application Modules functions. In short I created function:
    public List getListOfTest() {
    List allTests = new ArrayList();
    allTests.add("test1");
    allTests.add("test2");
    allTests.add("test3");
    return allTests;
    inside AppModuleImp.java
    I tested this implementation through AppModule Oracle ADF Model Tester and it returns test1,test2,test3. So this is OK. Now I publisher function through Client Interfaces, and I can see it know in DataControl.
    So I drag and drop function on my jsf page, and render it as a button. Also i drag and droped "return"(hierarchically beeneth/inside function getListOfTest in DataControll) from Data Control and rendered it as ADF table. I was hoping that this will show: test1,test2,test3 in ADF table.
    But now when I run jsf page and it is displayed in browser I get:
    Object java.util of type ApplicationModule is not found
    What I am doing wroong. Please help. Thx
    I use JDeveloper Studio Edition Version 11.1.2.2.0

    The solution is
    public List<String> getListOfTest() {
    List<String> allTests = new ArrayList<String>();
    allTests.add("test1");
    allTests.add("test2");
    allTests.add("test3");
    return allTests;
    Problem was in generic List

  • How to implement Distributed Transactions in ADF?

    Scenario:
    when selected rows and submitted action from UI, following happens
    1) For the selected rows, information will get fetched from database and a message will get formed and will get posted in JMS queue
    2) once step1 is successful, corresponding record will get logically deleted
    Implementation details:
    Environment: Oracle ADF , Weblogic server
    Step1: Created UI with Multi selection
    Step2: getting selected row key information and calling a custom AM method (exposed as client interface) from managed bean passing selected row key info
    step3: implementing following logic in AM method
    while(keyList.hasNext()
    1) getting View object for the given key and populating message
    2) Posting the mesage in JMS queue configured in weblogic using JMS Helper classes written
    3) updating the delete flag in VO
    Problem statement:
    In Step3 after sub step 2 executed, suppose if database is down substep3 will not get executed
    because of which a record will get displayed again back in UI and when selected again a duplicated message will be sent to the concerned external system
    I'm very new to ADF. Can anyone please help me on how to achieve this using ADF?
    Much Appreciated,
    Indu

    Thanks Vinod for your reply
    at substep 2 getting record from database and populating message and posting it to jms queue
    at substep 3 if post is successful the updating database indiacting this message has been sent by updating delete flag
    if i update database first and then if send message, In case of JMS exception(Can be Queue failures) my record will get updated and i cannot see record back in UI
    So both these opertions has to be happened in in single Transaction.Either both has to be happened or both has to be rolled back
    database and JMS are different resources. How ADF handles these XA transactions?
    Thanks,
    indu

  • JsCookMenu - Problem with display of Menu (Oracle ADF)

    I am using Oracle ADF with JSF components. The jsCookMenu displays the menu along with "x" representing images on the right and left side of the menu label. Please suggest me how to remove this icon from the menu display. Please find the code below.
    <t:jscookMenu layout="hbr" theme="ThemeOffice" styleLocation="/css/jscookmenu" >
    <t:navigationMenuItem id="nav_1" itemLabel=" Menu1 " >
    <t:navigationMenuItem id="nav_1_1" itemLabel="Menu1.1" > </t:navigationMenuItem>
    </t:navigationMenuItem>
    </t:jscookMenu>
    I am getting this problem with IE when the application starts. When I do ctrl+refresh, this issue doesnot occur. Also, with Firefox I am not getting any problem. I need to know how to fix this issue with IE when the application starts. Any suggestions on this would be of great help.

    User, please always tell us your jdev version.
    The interesting part is what you did not tell us.
    Kindly let me know as to why Iam not to replicate the issue in my earlier WLS.Please find my code means hte code has once run OK and now after you did some changes doesn't any longer. Querstion: what did you change, not oly to the code but to the environment.
    Timo

  • Problem in Oracle ADF with JDeveloper. JBO25001

    Hello All,
    I have to develop an application using oracle ADF and JDeveloper. To famalirize my self with the technology, I downloaded the Oracle ADF tutorial "Tutorial for Forms/4GL developers" from Oracle site.
    I am following this tutorial line by line, but still getting an error. I have created
    1) Entities
    2) Associations
    3) Views
    4) ViewLinks
    5) Application Module
    all by wizard.
    After I added my view and view link into the application module and tried to test it it gave me the following error.
    (oracle.jbo.common.ampool.ApplicationPoolException) JBO-30003: The application pool (.10E97657A25) failed to checkout an application module due to the following exception:
    ----- LEVEL 1: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 2: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 3: DETAIL 0 -----
    (oracle.jbo.NameClashException) JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    I changed the names of each object but still the problem persisted.
    If any body can help me on this I will really appreciate it. Thanx a ton in advance.
    I have downloaded and using the latest JDeveloper version 10.1.3.1.0.3984
    Please help me on this.
    Regards,
    Saket Maheshwary

    Saket,
    Did you ever get this situation resolved?
    I'm working thru the tutorial myself and get the same error except the object is Product.
    Do you have any clues?
    Thanks,
    Lonnie Spears

  • How to implement custom Model Class in Oracle ADF?

    I am using Oracle ADF for one of my project and i am using Query component of ADF. For given tables the query component creates view objects and maps the relations. ADF uses its own custom model class for this component and it should understand the DB tables. But for my project i have no access to database. All i can do is pass a string or object/query to the existing (custom) Java class/object, and this model class formulates query and queries the database and returns the value to my Java class. I have to display these results using ADF to the front end. Is There a way to achieve this? Can i replace/override the existing Model class of ADF. If so how?
    Thanks in advance for your help.

    Hi, there:
    Best thing to do is to start with the default login.html page, and then modify it. The login screen is fairly complex and it's easy to just miss a JS function you need to call. To get to default page, you would need to do one deploy (to simulator or whatever), and then look for login.html page in the temporary Xcode or Android project generated from the deployment. It should be under the "deploy" directory in your JDev workspace.
    You can also see all the framework JS files and CSS files that way as well.
    We have had customers implementing custom login screen so we know it can work, but they all had to start with the default login screen and then modify it.
    Thanks,
    Joe Huang

  • Implementing Event listeners in Oracle ADF

    I have a selectonechoice UI component by which the user selects the user name and an UI table component which displays all the documents the user has access to. There are three tables involved 1) User 2) Access 3) Documents. USER table has a FK relation to ACCESS table. The ACCESS table has FK relation to DOCUMENTS table.
    I have written two SQL queries/view objects (userView) to get the user name and another join query (userAccessView) to get the document names that a particular user has access to.
    I want to link the two UI components such that when the selectonechoice UI component changes value, the table UI component should display document list has the user has access to.
    Is there any sample example of how to implement the functionality using Oracle ADF? Or any suggestion on how to do it.
    Regards
    Thomas

    You should be able to achieve this with PPR - for example see this demo of the navigation list:
    http://blogs.oracle.com/shay/2008/11/the_navigation_list_select_som.html

  • Oracle ADF 11g – Authentication using Custom ADF Login Form Problem

    Hi Guys,
    I am trying to Authenticate my adf application using custom Login Form.
    following this..
    http://www.fireboxtraining.com/blog/2012/02/09/oracle-adf-11g-authentication-using-custom-adf-login-form/#respond
    But my Login Page is not Loading.I think its sending request in chain.my jdev version is 11.1.1.5.Any Idea.
    Thanks,
    Raul

    Hi Frank,
    I deleted bounded code and In another Unit Test I created a simple login.jspx page and applied form based authentication but still facing same problem means something wrong in starting.
    My login.jspx page is
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1" >
          <af:form id="f1" >
            <af:panelFormLayout id="pfl1">       
              <af:inputText label="USERNAME" id="it1"
                            />       
              <af:inputText label="PASSWORD" id="it2"
                              />
              <af:commandButton text="LOG IN" id="cb1" />
              <f:facet name="footer">       
              </f:facet>                 
            </af:panelFormLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    Don't know wht real problem is

  • Oracle ADF: ORA-01460 4000 chars problem

    Hello,
    please excuse my bad english. I hope you will understand what I mean.
    I hope I'am right here with my Problem:
    I hava a web application written with Oracle ADF in jDeveloper. A View-Object contains the SQL-Statemant to search with a bind variable (Type: String) and uses Oracle Text.
    WHERE contains(Index, :mySearchString, 1) > 0
    Java generates the String (Type: String) that might have a length of 12 chars, 1234 chars or maybe something about 4000 chars.
    If the String is below 4000 chars, there is no problem.
    But if he exceeds the 4000 chars I get a exception with the message "ORA-01460:     unimplemented or unreasonable conversion requested".
    How to execute this statement with a String longer than 4000 chars?
    Could someone help me?
    I am at my wit's end.
    Thank you!
    DB: Oracle 10g Enterprise Edition (10.1.0.4.2)
    JDBC Version: 10.1.0.5
    Greetings
    One

    Thank you! Good to know that it isn't impossible to enhance this.
    I wrote a sql function:
    create or replace function mysearch(p_arg varchar2)return sys_refcursor is
    l_resultset sys_refcursor;
    begin
    open l_resultset for select ... from ... where contains(attribut, p_arg);
    return l_resultset;
    end;
    and create a View-Object. This View-Object has the follwing SQL-Statement:
    SELECT mysearch(:p_arg) AS MY_SEARCH FROM DUAL
    but no attributes! And the Object which I get has only 1 row. It should contains about 9000.
    And I get anyway the message "ORA-01460:     unimplemented or unreasonable conversion requested".
    In a PL/SQL context varchar2 can be 32KB!? Or not?
    Is this a ADF Problem? :-( (I hope so! If not: SORRY)

  • Oracle.adf.view.rich.pprNavigation.OPTIONS on give problem with servlets

    I recentrly fix ADF_FACES-60058 using in web.xml:
    <context-param>
    <param-name>oracle.adf.view.rich.newWindowDetect.OPTIONS</param-name>
    <param-value>on</param-value>
    </context-param>
    and now bc this change, when i call a sevlet using ajax.. all my servlets stop working...
    =( This mean this is not good fix...

    Hi i am getting now after fix problem with my servlet( Delete servlet and use Backing bean instead)
    javax.servlet.ServletException: java.lang.InternalError: name is too long to represent
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:266)
    at com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    at org.apache.myfaces.trinidad.context.ExternalContextDecorator.dispatch(ExternalContextDecorator.java:44)
    at org.apache.myfaces.trinidadinternal.context.FacesContextFactoryImpl$OverrideDispatch.dispatch(FacesContextFactoryImpl.java:267)
    at com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:473)
    at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:141)
    at javax.faces.application.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java:189)
    at org.apache.myfaces.trinidadinternal.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:193)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._renderResponse(LifecycleImpl.java:685)
    at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:261)
    =/

  • Oracle ADF VO old value problem.

    I have a web application developed Oracle ADF and Jdev 11.1.2.3.0. I have a button in my page which name is "Complaint". When user click the button, it invokes a method on ApplicationModuleImpl via a ManagedBean.
    public void clearAndExecute(){
    getCardView1().clearCache();
    getUser1View1().clearCache();
    getReplyView1().clearCache();
    getCardView1().executeQuery();
    getUser1View1().executeQuery();
    getReplyView1().executeQuery();
    public void increaseComplaint(BigDecimal cardID) {
    clearAndExecute();
    ViewObjectImpl vo = getCardView1();
    Integer complaintCount;
    BigDecimal userID=null;
    Row[] rows = vo.findByKey(new Key(new Object[] { cardID }),1);
    if (rows != null && rows.length > 0) {
    Row row = rows[0];
    complaintCount = (Integer) row.getAttribute("CardComplaintcount");
    ++complaintCount;
    userID=(BigDecimal) row.getAttribute("UserUserid");
    row.setAttribute("CardComplaintcount", complaintCount);
    clearAndExecute();
    this.getDBTransaction().commit();
    clearAndExecute();
    This method gets the "CardComplaintcount" column value in CardView1 and increase +1 it. and commit Transaction. My method runs normally but i have an issue.
    For example scenerio ; Initially, In column "CardComplaintcount" value is 5. And i open two web page different browser. Then, i clicked "Complaint button" 3 times. I looked at the mysql db, its value 8 it is OK. And then, i turn to other opened browser and clicked "Complaint" button one time and looked at the mysql db, and size is 6. it must be 8+1=9. It is likely refresh problem or not, How can handle this problem.
    Edited by: ramonypp on 27.Kas.2012 18:29

    Kdario, i know that, i can do a jdbcl call and get last result from DB. But, What is here ADF business components, Entities and View Objects, Rows. More jdbc call can make our application performance down. Due to this reason, i'm trying to solve this problem with entity objects or view objects.
    I did some news. Overriding the my entity object's lock method like below;
    try {
    super.lock();
    catch (RowInconsistentException ex) {
    this.refresh(REFRESH_WITH_DB_FORGET_CHANGES | REFRESH_CONTAINEES);
    super.lock();
    When it encounter with Optimistic lock exception (RowInconsistentException ) fetchs the new results from db, and refresh the entity. But i have only problem too. When i invoke the "ComplaintCount" button in other page, first click it retrives last value from DB, and second click, it counts complaintcount +1. I dont know Why first time id doesnt count +1,

  • Stretching problem in Oracle ADF..

    Hi All...
    Oracle ADF Inline Frame is not stretching properly. Any solution...
    The following code for your reference...
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
    <jsp:directive.page contentType="text/html;charset=UTF-8"/>
    <f:view>
    <af:document id="d1">
    <af:form id="f1">
    <af:panelStretchLayout id="rengacont1" styleClass="AFStretchWidth"
    startWidth="0px" endWidth="0px" topHeight="0px"
    bottomHeight="0px" dimensionsFrom="children">
    <f:facet name="center">
    <af:panelSplitter orientation="horizontal" splitterPosition="400"
    id="jsffPanSpt"
    dimensionsFrom="children">
    <f:facet name="first">
    <af:panelStretchLayout id="psl0" startWidth="0px" endWidth="0px"
    topHeight="0px" bottomHeight="0px"
    styleClass="AFStretchWidth"
    dimensionsFrom="children">
    <f:facet name="center">
    <af:group id="rengasamygroup1">
    <af:chooseDate id="cd1"/>
    <af:chooseColor id="cc1"/>
    <af:image source="/Visit-Srirangam-Temple-in-Trichy.jpg"
    id="i1"/>
    </af:group>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    <f:facet name="second">
    <af:panelStretchLayout id="pgHelp" startWidth="0px" endWidth="0px"
    topHeight="0px" bottomHeight="0px"
    styleClass="AFStretchWidth">
    <f:facet name="center">
    <af:inlineFrame source="http://www.google.com" id="jsffILFrame"
    inlineStyle="border-color:Navy;border-width:thin;border-style:solid;"
    shortDesc="Help"/>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    </af:panelSplitter>
    </f:facet>
    </af:panelStretchLayout>
    </af:form>
    </af:document>
    </f:view>
    </jsp:root>
    Thanks & Regards,
    Vass Lee

    Hi Vass,
    please use the proper tags so that it will be easy to understand.
    thanks

Maybe you are looking for