ADF - Insert inside af:inputText

While using the ProxyTag component from http://www.jsftutorials.net/proxyTag.html, i noticed that in Jdeveloper, when i right click a InputText component, and navigate to the "Insert inside" context menu item, the proxyTag component is not available.
How do i make it available for easy adding for "inserting inside" input text elements? What defines their relationships and allows this behaviour?

Hi,
I think this is all configured in velocity templates located in the IDE's system directory
Frank

Similar Messages

  • Create an ADF insert page

    Hi Everybody,
    I have three different tables.I need to design an ADF insert page using all the information from these tables.
    So generally for that i need to drag three createinsert buttons corresponding to these three view objects from data control.
    So is there possible to enable the textboxes without using createinsert buttons.Please reply me,it's urgent.
    With Regards
    Jyoti

    Hi,
    why don't you create a combined View Object that is based on the three entities involved ? Or do you need the forms to be separate ? If you follow the approach of CreateInsert with method call activities then you need to drag and drop all of the View Objects CreateInsert methods as a method call activity and line them up before you reach the JSPX document. However, when the CreateInsert happens, is this always in context of page navigation, or is it when the user presses a command button, in which case you would use a managed bean that calls teh CreateInsert actions as operation bindings
    Frank

  • Call ADF applications inside EBS.

    We are in the process of implementing couple of ADF applications with EBS security realm. I created a simple test app with a simple page and trying to use the EBS JAAS authentication, but its not authorizing for the pages. It looks like its authenticating fine.
    HEre are our Server configuration.
    Webloogic version - 10.3.6.0
    JDeveloper Version - 11.1.2.1
    Middleware version : 11.1.1.5 + interim patches
    p12917525_111150_Generic.zip
    p12979653_111150_Generic.zip
    The security model works fine in the Jdev Integrated WLS.
    I went through serveral documents including Oracle document E28169-01 (note 974949.1). We don't want to call ADF applications inside EBS. Basically we just want to use the EBS Authentication and Authorization for our ADF applications.
    As I mentioned earlier, its definitely authenticating my credentials, but its not authoring the page.

    User,
    I've done something like what Timo describes. We have deployed an application that exposes links to an external BI server to serve up reports/Discoverer workbooks. The URL is obviously different for dev/test/prod - so, what we did was to have a configuration table in the DB that defines such type of configuration parameters. We then have an application-scoped managed bean that sources its attributes from the database table and we refer to that managed bean using EL to construct the URLs. I didn't use web.xml/properties files for this because I wanted to have an EAR deployment artifact that could be deployed to any environment with no change.
    John

  • Image inside h:inputText

    hii everyone
    i want to put an image inside a h:inputText. i want the textfield to display a text and an image icon.
    i dont know it is possible or not.
    do anyone know any solution
    thanks in advance
    cheers.

    Just place a <h:graphicImage> or just a <img> element next to the input field.
    If you are talking about a background image, then use CSS instead.

  • MySQL - ADF (insert, update)

    I configured well the conection to a MySQL database (latest jdbc driver 5.1.5).
    My connection url is jdbc:mysql://localhost/<databasename>?&ultraDevHack=true&capitalizeTypeNames=true&pedantic=true&sqlmode=oracle
    I can do select,update,insert, delete from Jdev (ver. 10.1.2) SQL Worksheet with no errors.
    I made a simple ADF application (1am,1 ejb,1vo) and run the test appmodule. Primary key is set properly. Select works, but for any kind of update,insert operation I receive
    (java.sql.SQLException) Unable to retrieve metadata for procedure.
    How can I resolve this? Thanks.
    This is the track trace exception:
    java.sql.SQLException: Unable to retrieve metadata for procedure.
         at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:1056)
         at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:957)
         at com.mysql.jdbc.SQLError.createSQLException(SQLError.java:927)
         at com.mysql.jdbc.CallableStatement.extractProcedureName(CallableStatement.java:967)
         at com.mysql.jdbc.CallableStatement.determineParameterTypes(CallableStatement.java:798)
         at com.mysql.jdbc.CallableStatement.<init>(CallableStatement.java:612)
         at com.mysql.jdbc.CallableStatement.getInstance(CallableStatement.java:510)
         at com.mysql.jdbc.ConnectionImpl.parseCallableStatement(ConnectionImpl.java:3856)
         at com.mysql.jdbc.ConnectionImpl.prepareCall(ConnectionImpl.java:3927)
         at com.mysql.jdbc.ConnectionImpl.prepareCall(ConnectionImpl.java:3901)
         at oracle.jbo.server.DBTransactionImpl.createCallableStatement(DBTransactionImpl.java:3279)
         at oracle.jbo.server.DBTransactionImpl2.createCallableStatement(DBTransactionImpl2.java:414)
         at oracle.jbo.server.BaseSQLBuilderImpl.doEntityDML(BaseSQLBuilderImpl.java:243)
         at oracle.jbo.server.EntityImpl.doDML(EntityImpl.java:5296)

    I debuged the DML flow and concluded that is a wrong way of ADF to use callable statement despite preparecall statement for UPDATE and INSERT operations, case third party jdbc driver.
    Bellow are some fragments from oracle.jbo.server.BaseSQLBuilderImpl and oracle.jbo.server.DBTransactionImpl which show how ADF manage the DML operations:
    oracle.jbo.server.BaseSQLBuilderImpl.doEntityDML
                DBTransactionImpl dbtransactionimpl = entityimpl.getDBTransactionImpl();
                boolean flag1 = dbtransactionimpl.getLockingMode() == 3;
                callablestatement = dbtransactionimpl.createCallableStatement(stringbuffer.toString(), 1);
                entityimpl.bindDMLStatement(i, callablestatement, entitydefimpl.getAttributeDefImpls(), aattributedefimpl, aattributedefimpl1, hashmap, flag);
                int j = callablestatement.executeUpdate();
    oracle.jbo.server.DBTransactionImpl
        public CallableStatement createCallableStatement(String s, int i)
            int j = 0;
            if(InstrumentedEvent.isActive)
                j = InstrumentedEvent.startEvent(EventGroup.JDBC_CREATE_STATEMENT, "createCallableStatement - prefetch size: " + i);
            CallableStatement callablestatement = null;
            try
                callablestatement = mjdbcConnection.prepareCall(s);
                if(JDBCInteract.mDoTrace)
                    JDBCInteract.prepareCall(s);
                if(i != -1)
                    mSQLBuilder.doStatementSetRowPrefetch(callablestatement, i);
            catch(SQLException sqlexception)
                try
                    if(callablestatement != null)
                        callablestatement.close();
                        if(JDBCInteract.mDoTrace)
                            JDBCInteract.closeStmt(callablestatement);
                catch(SQLException sqlexception1) { }
                if(Diagnostic.isOn())
                    Diagnostic.println("DBTransactionImpl.createCallableStatement failed...");
                    Diagnostic.printStackTrace(sqlexception);
                throw new SQLStmtException(class$oracle$jbo$CSMessageBundle != null ? class$oracle$jbo$CSMessageBundle : (class$oracle$jbo$CSMessageBundle = _mthclass$("oracle.jbo.CSMessageBundle")), "27123", s, sqlexception);
            if(InstrumentedEvent.isActive)
                InstrumentedEvent.endEvent(j);
            return callablestatement;
    ...where mjdbcConnection is instance of java.sql.Connection
    MySql driver fails when it tries to call UPDATE or INSERT as a stored procedure because ADF send the command to do a callable statement, but there is no UPDATE/INSERT procedure/function.
    The driver parameter ultraDevHack is not used (jdbc mysql v. 5.1.5). I traced the code and I never saw the use of ultraDevHack.
    The ADF must use prepare statement for UPDATE/INSERT and not callable statement.
    So, what is the practical solution?

  • How to eject a mini cd inserted inside the Macbook Pro ?

    guys...am just a new Macbook user....
    And i did a stupid thing to insert a mini CD inside the CD/DVD slot n now it wont come out..
    The eject simply won`t work
    Now how do i remove it ?
    I inserted the mini cd thinking that Mac supports everything...
    Kindly help...

    Yo have to take it to a repair center.

  • Run a ADF app inside a frame

    Hi,
    We have a ADF app developed with Jdeveloper 11g. It runs fine.
    When we try to add it inside a html frame, it gives this error
    Warning: Unable to load content in a frame. Frame content will load at the top level.
    Any ideas how to work around this.
    Thanks

    Hi Frank,
    Correct. These are not ADF buttons. Here is how it is implemented.
    We are developing a new adf application, ""Employee Maint"" and adding to our existing site page.
    The existing html web page has top and bottom frames.
    The buttons are in the top frame which when clicked show the corresponding page in the bottom frame.
    Button code looks like this
    It is an hyperlink with href="# " onClick="showPage('mypage.html')"><img src="button1.gif">
    The java script, go_main looks like this
    function showPage(url1) {
    parent.frames.bottom.location.href = url1;
    Here is how the page looks.
    Button1 Button2 <<<<< top frame - name "head"
    mypage.html <<<<< bottom frame - name "bottom"
    In the mypage.html(in the bottom frame), "Employee Maint" link is there which points to the new ADF application.
    When clicked this link pulls up a Jdev Application in the bottom frame. THIS WORKS FINE.
    But, after the Jdeveloper page is loaded, when we try to use the "Button2" in the top frame to pull up other page,
    it does not work.
    The reason I see is that ONCE THE ADF APPLICATION HAS SHOWN IN THE BOTTOM FRAME, THAT FRAME is not accessable
    by the javascript when the Button2 is clicked. The parent.frames.bottom.location is inaccessible.
    This works well in IE but an issue with Safari/Chrome/Firefox.
    Is there any solution for this so that the top buttons continue to work even after clicking on the Jdeveloper App.
    PS: The ADF app has the below code in the web.xml (without this code it does not pull up in the bottom frame)
    <context-param>
    <param-name>oracle.adf.view.rich.security.FRAME_BUSTING</param-name>
    <param-value>never</param-value>
    </context-param>
    Thanks
    Edited by: user5156030 on Mar 14, 2011 7:29 PM
    Edited by: user5156030 on Mar 14, 2011 7:30 PM

  • ADF : show / hide an inputText

    Hello,
    Suppose I have a buton and an inputText, I would like that when I click my buton
    - inputText become visible
    - buton become disabled
    suppose this start code :
    <af:commandButon text="showMyText" action="myBean.myMethod"/>
    <af:inputText value="my temporary secretText" visible="false"/>How can I make it ? with partial triggers ?
    Thanks

    Valery,
    Partial triggers would be a good way, yes.
    Put an ID on the af:commandButton; also set its partialSubmit property to "true"
    In the af:inputText, set the partialTriggers property to the ID of the af:commandButton.
    In myBean.myMethod, change the visible/enabled properties as you desire. You may also find it easier to do if you bind the af:commandButton and af:inputText to properties in your backing bean (hint: the "bindings" property).
    Best,
    John

  • To make text inside inputText disappear on click

    Hi,
    I'm using jdev 11.1.1.6. How to make text inside inputText disappear on click by using af:clientListener ?

    Hi,
    Use clickEvent.getSource().setValue(""); instead of clickEvent.getSource().setSubmittedValue("");
    Following code works for me
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <af:inputText label="" id="it1" value="This text vanishes on click">
        <af:clientListener method="onClick" type="click"/>
      </af:inputText>
      <af:resource type="javascript">
        function onClick(clickEvent) {
           // clickEvent.getSource().setSubmittedValue('');
            clickEvent.getSource().setValue("");
      </af:resource>
    </jsp:root>

  • Can validations  be done inside  FOR ALL and can we use conventional insert

    Hi All,
    I have to move millions of data from one 'table1' to ' table 2'. Table 2 is equal Table 1 columns+ an extra column . data for the extra column is retrieved from table 3 using foreign keys of table 3 and table 1.how shud i do it using bulk collect and for all insert... I have given the sample code for my problem..
    TABLES:
    table 1 columns: emp_name, emp_id , emp_add, emp_txt
    table 2 columns: emp_name, emp_id, emp_add,emp_txt,emp_ref
    table 3 column: emp_txt,emp_ref,emp_size
    CODE:
    create or replace
    procedure bulk_proc IS
    v_emp_ref varchar2(20);
    cursor cur_t1 is
    select * from table 1;
    TYPE bulk_t1 is table of cur_t1%rowtype;
    v_bulk_t1 bulk_t1;
    cursor cur_t3 is
    select a.emp_txt,b.emp_ref from table 1 a, table 3 b where a.emp_txt = b.emp_txt;
    TYPE bulk_t3 is table of cur_t3%rowtype;
    v_bulk_t3 bulk_t3;
    begin
    open cur_t1;
    open cur_t3;
    loop
    fetch cur_t1 bulk collect into v_bulk_t1 ;
    exit when v_bulk_t1.count=0;
    fetch cur_t3 bulk collect into v_bulk_t3 ;
    exit when v_bulk_t3.count=0;
    for i in v_bulk_t1.first..v_bulk_t1.last loop
    for j in v_bulk_t3.first..v_bulk_t3.last loop
    if (v_bulk_t1(i).emp_txt = v_bulk_t3(j).emp_txt) then
    v_emp_ref := v_bulk_t1(i).emp_txt ;
    else
    v_emp_ref := null;
    end if;
    for all m in 1..v_bulk_t1.count
    insert into t2(emp_name, emp_id, emp_add,emp_txt,emp_ref) values
    (v_bulk_t1(m).emp_name,
    v_bulk_t1(m).emp_id,
    v_bulk_t1(m).emp_add,
    v_bulk_t1(m).emp_txt,
    v_emp_ref);
    end loop;
    end loop;
    end loop;
    close cur_t3;
    close cur_t1;
    end bulk_proc;
    can we do validations inside FOR ALL command..i am getting error.is it possible to use conventional insert inside 'for all command' or do we have to use only 'insert ti values v_bulk_t1(i)' like that....Do i have to use only conventional cursor for this problem?...please help me..

    1.I want to push 18 million records from one table to another table with validations....Can i use ur code for it? You can always test how the example Tubby provided works in your environment.
    Usually a single SQL statement is the right way to go.
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:760210800346068768
    (memorize the mantra)
    Another option you have is to use CTAS (Create Table ... As Select ...) or use the APPEND hint while inserting.
    Make sure first that you understand how it works:
    You can find many examples including clear explanations by doing a search on http://asktom.oracle.com
    2.Can we do normal insert and validations inside FOR ALL insert loop... Afaik, you cannot. ( But it wouldn't surprise me if Michael comes up with an example using dynamic SQL ;) )
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/forall_statement.htm#LNPLS01321
    Alternatively you should investigate if it's possible to adjust your query/queries in such a way so that only records that you want to insert are selected.
    In other words: use the WHERE-clause from your query to validate rightaway instead of selecting records thatyou don't want/need at all.
    3.How variables are stored in BULK COLLECT ..Is it storing pattern differs from cursor.......Sorry, I don't understand what you mean here.
    4.In which scenarios we should not use COLLECTIONS ...Please help me...That's totally dependent of the scenario/requirement.
    Example:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:1058232381458

  • ADF Unable to filter / sort date column in table

    Hi,
    I am using JDeveloper 11.1.1.7.
    I have a read only table inside a panel collection. One of the columns in the table is a date field. I have filterable and sortable properties set to true for all columns. Filter and sort property works for all columns expect the date column. The filter and sort options is not even shown for the date field (shown below).
    <af:column headerText="#{bindings.ASRTCreateRequestVO1.hints.CreationDate.label}"
                                             id="c7" sortable="true" width="100"
                                             filterable="true">
                                    <af:outputText value="#{row.CreationDate}"
                                                   id="ot7">
                                      <af:convertDateTime pattern="#{bindings.ASRTCreateRequestVO1.hints.CreationDate.format}"/>
                                    </af:outputText>
                                  </af:column>
    Please let me know if I am missing anything here.
    Thanks,
    Ashwin

    Hi Ashwin,
    As mentioned by Timo, for me also the filtering is working as usual.
    But while browsing through the ADF UI Guide I came across with below note
    If you want to use a component other than an inputText component for your filter (for example, an inputDate component), then instead of setting filterVisible to true, you can add the needed component to the filter facet.
    To do so:
    1. In the Structure window, right-click the column to be filtered and choose Insert inside af:column > JSF Core > Filter facet.
    2. From the Component Palette, drag and drop a component into the facet.
    3. Set the value of the component to the corresponding attribute within the FilterableQueryDescriptor class created in Step 1(not above step but you can find it in pg:390). Note that the value must take into account the variable used for the row, for example:
    #{af:inputDate label="Select Date" id="name" value="row.filterCriteria.date"}.
    This is in the section: 12.5.1 How to Add Filtering to a Table(pg:390).
    I hope it helps.
    Regards,
    Peddi.

  • Showing hyperlink in adf

    Hi,
    Use jdev 11.1.1.3
    I show a jspx page based on a VO which intern is based on a DB table.
    I have in the DB table column my_url with value as
    my link
    How can I simply display this DB column in ADF table as a link.
    When I drag and drop it as a output text field it shows the whole source url not the hyperlink.
    For my need, I cannot drag and drop it as a "gourl".
    Any another solution is welcome.
    Thanks

    I created a new column in the table using "Insert Inside Table" context menu and then I dragged a Go Link into the column. I updated the values as below and it works fine.
    <af:column id="c8">
    <af:goLink text="My Link Name" id="gl2" destination="#{row.MyHttpURL}"/>
    </af:column>
    PS: Observe the usage of MyHttpURL through row here.

  • ADF editable table issue

    Hi, I drag and drop an expert mode updatable VO to create an ADF editable table with inputText components associated with the table columns. This table is also binded to a CoreTable object inside the backing bean of the page. I also have a "Save" button which has actionLister binded to the backing bean to handle the saving for user's input data.
    Basically, I have 2 rows and 2 columns for the editable table. I entered "ABC" for the first row and first column and entered "DEF" for the second row and first column like the following:
    | Column 1 | Column 2 |
    | ABC | |
    | DEF | |
    In the backing bean's saveChanges method, I do:
    public void saveChanges(ActionEvent actionEvent) {
    int rowCount = this.testCaseTable.getRowCount();
    for (int i=0; i<rowCount; i++) {
    JUCtrlValueBindingRef rowDef = (JUCtrlValueBindingRef)this.testCaseTable.getRowData(i);
    TestCaseRowImpl row = (TestCaseRowImpl )rowDef.getRow();
    System.out.println("Column1 Data: "+row.getColumn1());
    System.out.println("Column2 Data: "+row.getColumn2());
    I am expecting to get "ABC" for the first row column1 data and "DEF" for the second row column1 data. However, the actual result is both "DEF" (the last entered value) for both the first and second row column1 data.
    What can be the potential issues of my codes? How can I get the correct user input data?
    Thanks.

    Hi
    You can obtain this data from iterator:
    DCBindingContainer bc = getBindings()
    DCIteratorBinding iter = bc.get("YourIteratorNameIterator");
    while(iter.hasNext()){
    Row row = iter.next()
    System.out.println("Column1 Data: "+row.getAttribute("Column1"));
    System.out.println("Column2 Data: "+row.getColumn2("Column2"));
    Kuba

  • Adf inputDate Problem

    hello oracles ;
    i m using adf BC to create some JSPX pages in jdev 11.
    i have a form wich have a dateInput, wich allows to select the date and show it it the field .but i want to save this date to the data base with the time of the operation when it was occured too !
    but here i get just the date.
    how can i save with the date the the time of the operation . like this : "dd/mm/yyyy hh:mm:ss"
    thanks, regards ;

    You just want to save the time, or do you want the user to enter the time as well??
    Select your <af:inputDate in the structure window. Right click and say Insert Inside->ADF Faces->Convert Date Time. Here you can set the pattern till hh:mm:ss ...
    If you want to automatically append the current time, at the time of insertion, you can override your doDML operation. You can write your custom code in the pre-insert section..
    http://radio.weblogs.com/0118231/2003/07/28.html
    Julian

  • ADF Table vertical scroll issue in Chrome & Safari, works fine in FF & IE

    Hi,
    Jdeveloper 11.1.1.7.0
    ADF BC & ADF Faces
    I have a jspx page with a command link. On click of link, opening a popup. Displaying a ADF table inside popup dialog.
    Problem Statement :   I have set contentDelivery="immediate" & autoHeightRows="8" in ADF table. while running the application in Chrome & Safari and moving vertical scroll up & down rapidly, first few rows & last few rows are not visible respectively. But if i scroll up & down using scroll arrow it's working as expected.
    But there is NO issue while running the application in IE & FF and moving vertical scroll up & down rapidly.
    FF 26.0
    Safari 5.1.7
    IE 8.0
    Chrome 31.0.1650.63 m
    JSPX Code :
    [code]
    <?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:messages id="m1"/>
          <af:form id="f1">
            <af:commandLink text="Customize" id="cl1">
              <af:showPopupBehavior popupId="p1" triggerType="action"/>
            </af:commandLink>
            <af:popup id="p1">
              <af:dialog id="d2" type="none">
                <af:panelGroupLayout id="pgl1">
                  <af:table value="#{bindings.XXXXView1.collectionModel}"
                            var="row"
                            rows="#{bindings.XXXXView1.rangeSize}"
                            emptyText="#{bindings.XXXXView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                            fetchSize="#{bindings.XXXXView1.rangeSize}"
                            rowBandingInterval="0" id="t1" autoHeightRows="8"
                            contentDelivery="immediate">
                    <af:column sortProperty="#{bindings.XXXXView1.hints.ProductOrder.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.ProductOrder.label}"
                               id="c4">
                      <af:inputText value="#{row.bindings.ProductOrder.inputValue}"
                                    label="#{bindings.XXXXView1.hints.ProductOrder.label}"
                                    required="#{bindings.XXXXView1.hints.ProductOrder.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.ProductOrder.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.ProductOrder.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.ProductOrder.tooltip}"
                                    id="it1">
                        <f:validator binding="#{row.bindings.ProductOrder.validator}"/>
                        <af:convertNumber groupingUsed="false"
                                          pattern="#{bindings.XXXXView1.hints.ProductOrder.format}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SerialNo.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SerialNo.label}"
                               id="c2">
                      <af:inputText value="#{row.bindings.SerialNo.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SerialNo.label}"
                                    required="#{bindings.XXXXView1.hints.SerialNo.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SerialNo.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SerialNo.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SerialNo.tooltip}"
                                    id="it5">
                        <f:validator binding="#{row.bindings.SerialNo.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SystemId.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SystemId.label}"
                               id="c1">
                      <af:inputText value="#{row.bindings.SystemId.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SystemId.label}"
                                    required="#{bindings.XXXXView1.hints.SystemId.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SystemId.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SystemId.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SystemId.tooltip}"
                                    id="it2">
                        <f:validator binding="#{row.bindings.SystemId.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.SystemName.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.SystemName.label}"
                               id="c5">
                      <af:inputText value="#{row.bindings.SystemName.inputValue}"
                                    label="#{bindings.XXXXView1.hints.SystemName.label}"
                                    required="#{bindings.XXXXView1.hints.SystemName.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.SystemName.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.SystemName.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.SystemName.tooltip}"
                                    id="it3">
                        <f:validator binding="#{row.bindings.SystemName.validator}"/>
                      </af:inputText>
                    </af:column>
                    <af:column sortProperty="#{bindings.XXXXView1.hints.ModelNumber.name}"
                               sortable="false"
                               headerText="#{bindings.XXXXView1.hints.ModelNumber.label}"
                               id="c3">
                      <af:inputText value="#{row.bindings.ModelNumber.inputValue}"
                                    label="#{bindings.XXXXView1.hints.ModelNumber.label}"
                                    required="#{bindings.XXXXView1.hints.ModelNumber.mandatory}"
                                    columns="#{bindings.XXXXView1.hints.ModelNumber.displayWidth}"
                                    maximumLength="#{bindings.XXXXView1.hints.ModelNumber.precision}"
                                    shortDesc="#{bindings.XXXXView1.hints.ModelNumber.tooltip}"
                                    id="it4">
                        <f:validator binding="#{row.bindings.ModelNumber.validator}"/>
                      </af:inputText>
                    </af:column>
                  </af:table>
                </af:panelGroupLayout>
              </af:dialog>
            </af:popup>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>
    [/code]
    Any help will be appreciated.
    ~Abhijit

    Hi,
    We are seeing this behaviour too - JDEV 11.1.1.7 with WLS 10.3.6.
    Anybody got any suggestions?
    Thanks
    Jon

Maybe you are looking for

  • [SOLVED] Changed an option in /etc/updatedb.conf

    Hello all, I started using locate to search my files. However, it never showed files in my /home directory which is, obviously, the directory I search most. Running updatedb --debug-pruning I found out that it didn't add /home to the database because

  • T400s doesn't remember to use monitor when resuming from sleep

    I can connect a T400s to a monitor using a DisplayPort-to-DVI cable and set it to "Projector only" (via Fn+F7). But when I put the laptop to sleep and resume, the monitor (which goes to sleep after a few seconds when not used) remains asleep and the

  • Can you create sfx in GarageBand?

    I'm not a musician, nor am I an Apple guru. I need to create a sound effect that's in the background of an mp3 file which I have (so I can loop it and play it continuously). I think it's really basic if you know what you're doing. I however, haven't

  • IPhone 4S Rechargeable Cases

    Thnking of getting a rechargeable case? Is it safe to use it on my iphone 4S

  • How to customize a standard bsp application

    hi folks, i want to know what is the SAP recommended way of customizing a standard SAP BSP application. is it directly modifying the BSP application or is it creating a z application using report bsp_customize & then modifying it or is it anything el