ADF Master Table, Inline Detail Table - How to Scroll Range/Disclose Row

JDev 10.1.3.2 ADF/BC
I really need some help here. I've tried as many things as I could think of and I still cannot get this to work.
Scenario: I have query/result page. User clicks a link in the result table to take him to another page. This page has a Master table, Inline detail table component (bound to a tree in the pageDef). Before the page renders, all I want to do is scroll the Master table to the current row (based on the previous query/result via invokeAction in pageDef) and disclose the inline detail. Simple, right? In addition, I'll need to scroll the inline detail to the current row as well.
I would like to do this prior to the components rendering but would be interested in any coding to scroll and disclose.
Thanks in advance,
Tom

I've come up with a solution to my problem. Unfortunately I'm not able to manipulate the table prior to rendering but this solution is probably the closest I'm going to get. Here is my code:
I set up a af:poll component to fire once on my jspx.
    public void poll_PollListener(PollEvent pollEvent) {
        if (this.getFromProcess("unitRowKeyValue") != null) {
            int curIndx = this.getIteratorBinding("UnitsIterator").getRowSetIterator().getCurrentRowIndex();
            this.getUnitTree().setFirst(curIndx);
            if (this.getFromProcess("systemRowKeyValue") != null) {
                this.getUnitTree().setRowIndex(curIndx);
                DisclosureEvent de = new DisclosureEvent(this.getUnitTree(), true);
                this.getUnitTree().queueEvent(de);
            this.storeOnProcess("renderPoll", false);
    }The setFirst method scrolls the table to the index specified. If the user, in my case, has selected a detail item (system), I want to disclose the detail. First I need to setRowIndex to the current index and then I fire a disclose event.
    public void unitTreeDisclosureListener(DisclosureEvent disclosureEvent) {
         if (disclosureEvent.isExpanded()) {
             CoreTable coreTable = (CoreTable)disclosureEvent.getSource();
             RowKeySet rks = new RowKeySet();
             Object test = coreTable.getRowKey();
             rks.getKeySet().add(coreTable.getRowKey());
             coreTable.setDisclosureState(rks);
      }If I don't set the rowKey via the setRowIndex method above, the getRowKey does not return a valid rowKey. In my case, I only want one master row to be disclosed at a time.
This all works great except for a bit of flicker to process the PPR request for the component.
Next step is to see if I can scroll the Inline Detail table to the detail row selected in the Query/Result page.
Tom

Similar Messages

  • ADF Faces Query Panel: How to display master data in detail table?

    Before stating the question, here is the background:
    I've a Fusion ADF (model/viewController) app that includes 2 tables with a master-detail relationship. The master table stores error numbers and associated levels of logging severity; the detail table stores the actual message text. These need to be separate, related tables because the requirement is that message text for a given error number can vary by product release.
    Messages are added in a bounded task flow; data for the master table entered in 1 fragment, data for the detail table in a 2nd page fragment. In the app, the Entity Objects for these tables are related with a foreign key association and have a composition association. This was done because the error numbers are generated in an Oracle DB sequence, and from what i have read that is a way in a task flow to have ADF put the number generated for the master table into the related key of the child table.
    The question is this:
    I need to create an ADF query panel with a table that searches on the detail DB table. However, i also need to use a couple of fields from the master DB table in both the query and in the ADF table. In addition, I need to add the ability for the user to edit either the master or detail record for the row he/she selects in the ADF table. I know how to create a view that would display the info i need; however, i have not been able to figure out how to obtain the keys for the selected ADF table row and pass them to the task flows that would edit.
    The master table has a numeric primary key. The detail table primary key consists of a foreign key to the master key and also a release number.
    I'm new to ADF and have been struggling with how to do this: i've a workaround that is functional but too klunky to be a permanent solution. So, could someone point me to some information on how to accomplish this?
    Versions: JDeveloper 11.1.1.4, ADF Business Components 11.1.1.59.23
    Thanks for your help!

    Thanks. I tried this out, but ran into an issue in that the detail table has 2 keys - a foreign key to the master primary key, and a 2nd key that uniquely distinguishes the detail. So i tried various things centered around using the SetCurrentRowWithKey operation and trying to obtain the selected ADF table row using an EL OF #{data.<pageDef>.<Iterator>.currentRowKeyString}; however i could not get the detail record for the selected row to display.
    I did find another approach that worked - I am wondering, is there anything problematic with this approach?:
    1. Create a VO joining the Master and Detail tables, with the Detail table being updatable.
    2. Made sure the applicable attributes were defined as keys.
    3. Add a query panel w/table using this VO.
    4. Create an ADF form based on the VO, showing the updatable fields.
    5. Create a bounded task flow with the following set on the Behavior tab:
    a. Share data controls with calling task flow
    b. Always Begin Transaction
    I specifically am wondering whether "Share data controls with calling task flow" has any negative implications or gotchas to handle. The doc at http://download.oracle.com/docs/cd/E21764_01/web.1111/b31974/taskflows_parameters.htm#ADFFD1693 doesn't suggest so, but just wanted to double-check before I go down this path.

  • I need a form of the type Master Table - Multiple Detail Tables

    I have a BD master table with at least 5 five detail tables to be represent in only one form.
    I hope you make some suggestions on how to realize it?
    Thanks

    OK Shiladitya
    Thanks for your info...I'm now trying to link from the master table to 5 MDforms with the same master but occulting all the fields except the name....any suggestions?
    My principal goal is howto call (from the links) with the actual master record...it is urgent....help will be very appreciate
    Tahnk & Regards

  • TWO MASTER AND ONE DETAIL TABLE

    HI,
    I HAVE TWO SEPARATE MASTER TABLE WITH SAME DETAILS I MADE ONE DETAIL TABLE REFERENCES BOTH OF THE MASTER TABLES(BOTH MASTER HAVE SAME PRIMARY COLUMN NAME) , BUT WHEN INSERT RECORD IN DETAIL IT GIVES ME ERROR THAT PARENT KEY NOT FOUND(ALTOUGH I HAVE INSERTED MASTER DATA IN ONE MASTER TABLE BUT NOT THE SECOND ONE AND IT'S NOT POSSIBLE TO INSERT SAME DATA IN SECOND MASTER TABLE), WHAT I WANT TO ASK THAT HOW IT'S POSSIBLE TO USE SAME DETAIL TABLE WITH DIFFERENT MASTER TABLES. STRUCTURE OF BOTH OF THE TABLES ARE BELOW.
    MASTER ONE
    SQL> DESC INCIDENT
    Name
    REF_NO
    INC_TYPE_CODE
    DISTRICT_CODE
    KV33
    KV11
    INC_DATE
    EMERGENCY
    TRIP
    CAUSE_TYPE_CODE
    SUB_CAUSE
    INC_DESC
    REASON
    OPER_SEQ
    REM_RECOM
    CON_COMP_CODE
    CTRL_ENG_APP
    DELAY_OCCURED
    DELAY_REASON
    SECOND MASTER
    SQL> DESC SWITCHING
    Name
    REF_NO
    INC_TYPE_CODE
    JOB_CODE
    DISTRICT_CODE
    KV33
    KV11
    CON_COMP_CODE
    INC_DATE
    INT_NOTICE_ISSUE
    INTERRUPTION
    REM_RECOM
    CTRL_ENG_APP
    WORK_DESC
    DETAIL TABLE
    SQL> DESC INTERP_DETAIL
    Name
    REF_NO
    INC_TYPE_CODE
    FEEDER_CODE
    VOL_LEVEL
    START_DT_TIME
    GRID_CODE
    END_DT_TIME
    LOAD_AMP
    LOAD_MW
    LOSS_MWHR
    THANKS IN ADVANCE.
    KHAWAR

    Hi,
    When you establish the relations using the references, then oracle will look for the parent key in both the parent tables. Either you need to remove the foreign keys or change your db design to add one more table and have one-one parent child relationships.
    HTH
    Regards,
    Badri.

  • ADF BC - One Master and Two Detail pages How To?

    I have an existing ADF BC .jspx master-detail page that works fine. It shows one product as the master (read-only; no navigation controls) and assocatied customer feedback as the detail (multiple records; read-only.) Now I also want to compute some averages from the same table used to create the detail view object. I have created a second view object because this requires a separate query that calculates aggregate values. I want to take advantage of using view links so that this 2nd view object is automatically linked to the master record via the primary key.
    My question is how can I link this into the existing master-detail data control so that I can drag/drop it to include id on the existing .jspx page and the primary key linkages will be handled automatically?
    Tables
    Product
    Feedback
    View Objects
    ProductView
    FeedbackView
    FeedbackAVGView
    Current ViewLink
    ProductFeedbackViewLink = ProductView + FeedbackView
    Current DataControl
    ProductFeedbackViewLink-Instance
    Data Control is displayed on .jspx page; want to also include 3rd View Object, FeedbackAVGView, in the Master-Detail relationship and display on the .jspx page

    Thanks for the reply. The existing customer feedback view object displays the customer's text feedback (testimonials) - these will be displayed in a read-only table with multiple records.
    The new view object aggregates the ratings score from the customer feedback (same FEEDBACK database table) and will use a form to display the results (not multiple rows.) The PK is included in the aggregate view object query.
    Note there is already an existing viewlink between the PK (Master) and FK (Feedback) - in the data control, this viewlink is an instance of the Master View Object and the Customer Feedback View object. Now that I have created a third view object, should I create another View Link between the Master View Object and the Customer Feedback AVERAGES View Object? If I do this, how do I include it in the existing .jspx page? If I add this new View Link to the Application Module I will have two different Data Controls:
    Data Control #1: Master (Product) View Object + Customer Feedback View Object #1 (implemented as a master-detail read-only form/table on a .jspx page)
    Data Control #2: Master (Product) View Object + Customer Feedback AVG View Object #2
    I'm confused as to how to integrate the second customer feedback view object into the existing Data Control / Master-Detail read-only form/table on my .jspx page?
    thanks

  • Dynamic table with inner table

    I have the requirement to create a table, where certain table cells contain an inner table and table cells of the master and inner table need to have different background colors. Any suggestions which component I should use (af:table, h:panelGrid, h:dataTable, etc.)? Which component should be used in backing code (RichTable, UIXTable, etc.). Can I use CollectionModel data structure?
    We are using JDEVADF 11.1.1.2.
    |...HEADER_COL1...||.......COL2......||.......COL3......||.......COL4......|
    |row1..............||----------------||.................||.................|
    |.................|||.inner table. |||.................||.................|
    |.................|||---------------|||.................||.................|
    |.................|||inner row 1....|||.................||.................|
    |.................|||inner row 2....|||.................||.................|
    |.................||-----------------||.................||.................|
    |row2..............||................||.................||.................|
    |row3..............||................||.................||.................|
    |row4..............||----------------||.................||.................|
    |.................|||.inner table. |||.................||.................|
    |.................|||---------------|||.................||.................|
    |.................|||inner row 1....|||.................||.................|
    |.................|||inner row 2....|||.................||.................|
    |.................||-----------------||.................||.................|
    ----------------------------------------------------------------------------

    Hi, In ADF 10G there was a ADF Master Table, Inline Detail Table component. Did that get removed in ADF 11G? How do we do inline table in 11G.
    Edited by: user8948183 on Feb 18, 2010 1:50 PM

  • Table type to Table type conversion?

    Is it possible to convert an ADF Readonly table to an ADF Master Table inline, Detail Table?
    We have spent months making an application which mainly revolves around a single page based on a highly customized ADF Readonly Table. Now.. they want new Master-Detail info on that page ( in that table).
    Is there a good/practible/advisable way to use what we have and possibly convert to an ADF Master Table, Inline Detail Table?
    Thank you for any advise!
    Dan

    Well, it's pretty hard for me to argue if you're going to use my own product as facts against my argument ;)
    It is indeed in the product and that is a surprise to me. We had this feature in, but ended up having some trouble with it so we (I thought) pulled it from the product. Technically it works in many cases, but since you can put anything in the column of a table, we ran into some situations where it broke or performed so badly that it seemed broken.
    I just ran a simple test case with outputText in the detail table and it worked fine. Again, I think the issue you are having right now is data related and I can help you with that, but I am going to try to find out what happened with this and what the limitations are in putting a table in the stamp.
    Sorry for the confusion.
    Ted Farrell
    Oracle Corporation
    PS, here is my page and pagedef using the HR schema that comes default with the oracle database
    ---- table snippet from jspx page -----
    <af:table rows="#{bindings.DepartmentsView1.rangeSize}"
    fetchSize="#{bindings.DepartmentsView1.rangeSize}"
    emptyText="#{bindings.DepartmentsView1.viewable ? 'No rows yet.' : 'Access Denied.'}"
    var="row" value="#{bindings.DepartmentsView1.treeModel}">
    <af:column headerText="#{bindings.DepartmentsView1.hints.DepartmentId.label}"
    sortProperty="DepartmentId" sortable="false">
    <af:outputText value="#{row.DepartmentId}">
    <af:convertNumber groupingUsed="false"
    pattern="#{bindings.DepartmentsView1.hints.DepartmentId.format}"/>
    </af:outputText>
    </af:column>
    <af:column headerText="#{bindings.DepartmentsView1.hints.DepartmentName.label}"
    sortProperty="DepartmentName" sortable="false">
    <af:outputText value="#{row.DepartmentName}"/>
    </af:column>
    <f:facet name="detailStamp">
    <af:table rows="#{bindings.DepartmentsView1.rangeSize}"
    emptyText="No rows yet." var="detailRow"
    value="#{row.children}">
    <af:column headerText="#{row.children[0].hints.EmployeeId.label}"
    sortProperty="EmployeeId" sortable="false">
    <af:outputText value="#{detailRow.EmployeeId}">
    <af:convertNumber groupingUsed="false"
    pattern="#{row.children[0].hints.EmployeeId.format}"/>
    </af:outputText>
    </af:column>
    <af:column headerText="#{row.children[0].hints.FirstName.label}"
    sortProperty="FirstName" sortable="false">
    <af:outputText value="#{detailRow.FirstName}"/>
    </af:column>
    <af:column headerText="#{row.children[0].hints.LastName.label}"
    sortProperty="LastName" sortable="false">
    <af:outputText value="#{detailRow.LastName}"/>
    </af:column>
    <af:column headerText="#{row.children[0].hints.Salary.label}"
    sortProperty="Salary" sortable="false">
    <af:outputText value="#{detailRow.Salary}">
    <af:convertNumber groupingUsed="false"
    pattern="#{row.children[0].hints.Salary.format}"/>
    </af:outputText>
    </af:column>
    </af:table>
    </f:facet>
    </af:table>
    ---------- and full pagedef --------------
    <?xml version="1.0" encoding="UTF-8" ?>
    <pageDefinition xmlns="http://xmlns.oracle.com/adfm/uimodel"
    version="11.1.1.51.56" id="untitled1PageDef"
    Package="view.pageDefs">
    <parameters/>
    <executables>
    <iterator Binds="DepartmentsView1" RangeSize="25"
    DataControl="AppModuleDataControl" id="DepartmentsView1Iterator"/>
    </executables>
    <bindings>
    <tree IterBinding="DepartmentsView1Iterator" id="DepartmentsView1">
    <nodeDefinition DefName="model.DepartmentsView">
    <AttrNames>
    <Item Value="DepartmentId"/>
    <Item Value="DepartmentName"/>
    </AttrNames>
    <Accessors>
    <Item Value="EmployeesView"/>
    </Accessors>
    </nodeDefinition>
    <nodeDefinition DefName="model.EmployeesView">
    <AttrNames>
    <Item Value="EmployeeId"/>
    <Item Value="FirstName"/>
    <Item Value="LastName"/>
    <Item Value="Salary"/>
    </AttrNames>
    </nodeDefinition>
    </tree>
    </bindings>
    </pageDefinition>

  • Filtering not working for newly added child objects in master-detail table

    Hi,
    I am using Jdeveloper 11.1.1.4 version.
    Problem scenario:
    Filtering of records is not working for newly created child objects in a master-detail scenario.
    Steps to reproduce this issue using HR Schema (using LOCATIONS and DEPARTMENTS table ) :
    1. Create Business components (EO's & VO's ) for LOCATIONS & DEPARTMENTS table)
    1. Create a .jspx page and insert a readonly master table of Locations
    2. Insert a child table (inline-edit table) of Departments and enable filtering
    4. For the child table, drag and drop CreateInsert operation as a toolbar button .
    5. Create a new child record using the toolbar button and enter data .
    6. Filtering on the newly created child record's attributes does not work.
    Please note that the same filter works for existing child records.
    Any suggestions for resolving this issue?
    Thanks,
    Vikas

    Found from Fusion Developer's Guide the following snippet about QBE functionality :
    "+When you create data controls, all data collections will automatically include a Named Criteria node with an All Queriable Attributes criteria. This is the default view criteria that includes all the searchable attributes or columns of the data collection. You cannot edit or modify this view criteria+. "
    So, the question is if the implicit view criteria cannot be edited, how else to set the query execution mode to "Both" ?
    Shouldn't ADF BC support this by default? Is this a bug?
    Note:- If you create a maste-detail table using POJO datacontrols, filter works correctly for newly created child records also .
    This seems to be an issue with ADF-BC datacontrols only.
    Thanks,
    Vikas

  • How to Create (CREATE MODE) for four details table.....

    Hello,
    I am using ADF Faces, BC for my web app. Now, I have one master, and four details table in my page. How will I automatically make them in insert/create mode, upon loading the page...
    Thanks.

    Thanks,
    That actually worked for me! :) My question now is, what's the difference between, CREATE and CREATEINSERT? Im quite new to ADF...
    And another thing, when I click a button inside my page, while they are in CREATE MODE, my application throws the following exception:
    Error Message:
    JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[-27 ]
    Error Stack Trace:
    oracle.jbo.JboException: JBO-35007: Row currency has changed since the user interface was rendered. The expected row key was oracle.jbo.Key[-27 ]
         at oracle.adf.model.binding.DCBindingContainerState.throwRowNotFoundException(DCBindingContainerState.java:204)
         at oracle.adf.model.binding.DCBindingContainerState.validateIterator(DCBindingContainerState.java:227)
         at oracle.adf.model.binding.DCBindingContainerState.validateStateFromString(DCBindingContainerState.java:366)
         at oracle.adf.model.binding.DCBindingContainerState.validateToken(DCBindingContainerState.java:442)
         at oracle.adf.model.binding.DCBindingContainer.validateToken(DCBindingContainer.java:3357)
         at oracle.adf.controller.v2.lifecycle.PageLifecycleImpl.prepareModel(PageLifecycleImpl.java:104)
    Thanks!

  • Master table, detail table, detail table not getting refreshed selection

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    will i have to use table selection listener
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5

    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

  • Master table detail table with SQL based read only VO with bind variables

    i have a page where i am displaying data as master table and detail table. both table VOs are based on SQL queries which use bind variables.
    i have a view link between vos of type 1:M
    i created master table detail table page by dropping detail iterator from data control panel under master and selecting master table detail table
    on my page i see detail table records getting populated only for first record of parent table.
    on changing parent record, child table shows same records and does not refresh
    i am using partial triggers on both tables to be populated on a button click as i need to pass some bind variables to VOs which are taken as input from users
    how can i show corresponding rows in detail table when parent record in table changes
    is it possible declaratively to have master detail table view when both VOs have bind variables
    jdev 11 1 1 5
    these are the SQLs used
    Parent SQL Based VO Query
    SELECT to_char(d.status_date,'yyyymmddhh24') TIME123, count(DISTINCT d.c4)
    FROM t1 d,
    t2 w
    WHERE w.c1 = nvl(:ou, w.c1)
    AND UPPER(w.c2) = UPPER(nvl(:tt, w.c2))
    AND d.c3 >= :startTime AND :startTime IS NOT NULL
    AND d.c3 <= :endTime AND :endTime IS NOT NULL
    AND d.c4 = w.c4
    AND UPPER(d.status) = 'CLOSED'
    GROUP BY to_char(status_date,'yyyymmddhh24') ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    Child SQL Based VO Query
    SELECT w.c1,
    w.c5 - w.c6 processing_time,
    w.c3,
    w.c6,
    w.c7,
    w.c8,
    to_char(d.status_date,'yyyymmddhh24') TIME123 FROM t1 d,
    t2 w
    WHERE w.c2 = nvl(:ou, w.c2)
    AND UPPER(w.c3) = UPPER(nvl(:tt, w.c3))
    AND d.c4 >= :startTime AND :startTime IS NOT NULL
    AND d.c4 <= :endTime AND :endTime IS NOT NULL
    AND d.c1 = w.c1
    AND UPPER(d.status) = 'CLOSED' ORDER BY to_char(status_date,'yyyymmddhh24') DESC
    view link is based on column TIME123

    Instead of doing the master-detail layout by dragging the details over, can you try a new page where you first drag the master VO over and then drag the detail VO over, and then set partialTrigger from the detail to point to the master?

  • Master details tables and no xml data source

    Hello
    I want to create mater - details tables where details table will be repeated for each master row.
    So i created master table and placed detail table into master table cell.
    so what i want to have
    product1 quantity
                              - item1
                              - item2
    product2 quantity
                              - item3
                              - item3
    for now i have
    product1 quantity
                             - item1
                             - item2
                             - item3
                             - item3
    product2 quantity
    here is how i fill the table
    for i in 1..5 do
                ("Cell1r", "quantity" + i.ToString())
                ("Cell2r", "product" + i.ToString())           
            ] |>p
            for j in 1..2 do
                        ("Cell11", "product" + i.ToString())
                        ("Cell21", "serial" + j.ToString())
                        ("Cell31", "function" + j.ToString())
                    ]|>p
    i found an axample how to do it from xml data sourcem but have no idea and did not find how  to do it manualy(when i bing by name from code dynamicaly)

    i found hot to do it with xml source
    http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?content=000241.html
    but how to do it manualy ?

  • One Master Many Detail Tables

    Does anyone know how I can use XE to create a Master-Detail Form using one master table and multiple detail tables? Currently it seems to only allow one detail table.
    Thanks.
    Pat.

    Hello,
    I created the following tables (Location, Dept, Emp ). The master table is Location Table and detail tables are emp and dept.
    I created view for emp and dept tables then I created the master detail form which was include the location table as the master and the created view as the detail.
    But I need to create 3 blocks like in the oracle developer that helps me to insert the records in 3 tables at the same time.
    Best Regards,

  • Keeping Row Highlighted In Master-Detail Table

    JDev 11.1.2.0
    I have a small .jsf page with a master-detail setup, using 2 tables.
    When I select a row in the master table, the detail table is populated as expected.
    When I select a row in the detail table, the row is no longer highlighted on the master table.
    Is there any way to have the row selection in the master table remain highlighted while the user is clicking around the detail table?
    I am not sure if it matters but I have manually added filtering to both tables.
    Thank you.
    Ray

    Any help would be appreciated.

  • Problem with a master tree table and its detail table

    Hello,
    I have a master treetable showing on a page and a separated detail table below the treetable on the same page.
    To make the things clear, three tables are involved here: one master and one detail table to compose the treetable, and another detail table for the current selected row in the treetable.
    Things usually work fine when operating on the detail table. However, if I create or delete some rows from the detail table and press Rollback, some unwanted behaviour happens.
    In facts, on Rollback, both the master treetable and the detail table are redrawn on the page.
    However, once refreshed, despite the current selected row in the treetable still appears as the one before clicking Rollback (suppose not the first one), the detail table always correspond to the first row of the master treetable.
    Is there a way to either make the current selected row the first one the master treetable, or (preferred) to make detail table reflect the visible current selected row in the treetable?
    thanks

    jabr,
    ok . i will go through
    but if u don mine here john n timo says for me. pls check it.
    on rollback
    create insert options
    Edited by: Erp on Oct 12, 2011 5:14 AM
    Edited by: Erp on Oct 12, 2011 5:15 AM

Maybe you are looking for

  • I cannot get my new 5S to emit a sound when people call in. Not the "Do not Disturb".

    Whatever I have done to the 5S phone or something within it, I cannot get it to emit a noise when people call in. I have read recent blogs but to no avail - theproblem still exists. What to do?

  • Transfer photos from original iPad to Mac Pro

    My hard drive crashed & I lost my pictures on my desktop, but the last year of photos was synced to my ipad.  How can I transfer those back to my computer now that I have a new hard drive installed?

  • JMS adapter does not recover from error

    Hello everyone, We are noticing some strange behavior with the JMS adapter, and would like your help. We have messages coming into XI from WebSphere MQ. We have configured a Sender Comm channel (MQ_SENDER) with the appropriate JMS adapter, with a spe

  • Exchange setup via local address

    Hi Folks Am trying to setup an iPad2 so that it connects to our exchange server locally via wifi. am trying to avoid it using proxy and external sites. Has anyone managed to set one up this way as im struggling to get the exchange account setup to wo

  • IOS 7 update taking too long

    I finally got my iphone to start the update, but the estimated time remaining was 41 hours. should I keep going on the update or should I stop? I don't want to see an error after waiting for two days.