Detail page - navigation

I want users to ckick a thumbnail on my "thumbnails" page,
then go to a detail page where they can see the full size image.
But I also want navigation on this details page so users can go
next next next through all full size (repeat region showing 1 at a
time)and don't have to return to the thumbnails page everytime.
Thank you

Did you ever resolve this? I am having the exact same problem and would love to know how to do this. Thanks, ~ JD

Similar Messages

  • Detail page navigation help needed

    I am running 9iAS 9.0.2 and have a MD Form that displays 10 detial records at a time. I need to develop functionality to allow my users to move between detail pages without having to click "Next","Next","Next",etc....
    I was thinking of using the functionality of the onDetailNext procedure as part of the return value in a combobox LOV for the detail pages, but I don't know what to set the variables to, or if this is even possible.
    My code outline right now is. THis does a simple next. I don't know how to set it to jump to the 3rd or 4th page etc.
    BEGIN
    onDetailNext(
    p_block_name => null,
    p_object_name => null,
    p_instance => null,
    p_event_type => null,
    p_user_args => null,
    p_session => p_session
    END;
    Help on this, or info on a better way to do this would be great.

    As of now, there aren't any simple ways to jump to the nth page. You will have to do a lot of coding yourself.
    Please see the form's package body to get an idea how form's paginate between multiple records.

  • Graph not loaded on navigating to another detail page

    Folder Structure :
    webcontent
    index.html
        view
          -lineDetails.controller.js
          -lineDetails.view.js
          -lineStatus.controller.js
          -lineStatus.view.js
          -MainApp.view.js
          -MainApp.controller.js
          -MasterPage.controller.js
          -MasterPage.view.js
    I've a splitapp consisting of a masterpage - MasterPage and two detail page - lineStatus & lineDetails.
    there is a table in lineStatus page and a line graph in lineDetails page,
    when one clicks on show graph in table user is navigated to lineDetails page.
    The problem is that graph in lineDetails page is not visible, though <div> for graph is created.
    If I load lineDetails page first(where the graph is), then everything works fine and graph is visible.
    Code :
    Adding a column to table.
    var oColumn4 = new sap.ui.table.Column({
             label: new sap.ui.commons.Label({text: ""}),
             template: new sap.ui.commons.Link({text:"show graph",press:function(){
              splitapp.toDetail("lineDetails");
             width: "25%"
    Adding a graph to the page and returning it.
    createContent : function(oController) {
      oModelLineDetail = new sap.ui.model.json.JSONModel({
      businessData1 : [
      {Time :"1:00",Level:10},
      {Time :"2:00",Level:10.5},
      {Time :"3:00",Level:9.5},
      {Time :"4:00",Level:4},
      {Time :"5:00",Level:9.6},
      {Time :"6:00",Level:10.1}
      oDatasetLine = new sap.viz.ui5.data.FlattenedDataset({
        // a Bar Chart requires exactly one dimension (x-axis)
        dimensions : [
        axis : 1, // must be one for the x-axis, 2 for y-axis
        name : 'Time',
        value : "{Time}"
        // it can show multiple measures, each results in a new set of bars in a new color
        measures : [
           // measure 1
        name : 'Oil level', // 'name' is used as label in the Legend
        value : '{Level}' // 'value' defines the binding for the displayed value 
        // 'data' is used to bind the whole data collection that is to be displayed in the chart
        data : {
        path : "/businessData1"
      oLineChart = new sap.viz.ui5.Line({
        width : "80%",
        height : "300px",
        plotArea : {
        'colorPalette' : d3.scale.category20().range()
        xAxis : {
                    isIndependentMode : false,
                    title : new sap.viz.ui5.types.Axis_title({text: 'Time', visible: true})
        yAxis : {
                    isIndependentMode : false,
                    title : new sap.viz.ui5.types.Axis_title({visible: true})
      oTextView = new sap.ui.commons.TextView({
      text: "Line Speed",
      tooltip:"Line Speed",
      //width: "100%",
      design: sap.ui.commons.TextViewDesign.H1
      }).addStyleClass("lineDetHeader");
      oLineChart.setModel(oModelLineDetail);
      oLineChart.setDataset(oDatasetLine);
      var btn = new sap.ui.commons.Button({text:"button",press:function(){location.reload();}});
      lineDetPage = new sap.m.Page({
      title: "Line varaible details",
      showNavButton:true,
      navButtonPress : function(){splitapp.toDetail("lineStatus");},
      content: [oTextView,oLineChart,btn]
      return lineDetPage;

    Hi,
    Use the following code for navigation from one iview to another:
    WDPortalNavigation.navigateAbsolute(
    "ROLES:portal_content/com.cv.kaar.Test_Page2",
    WDPortalNavigationMode.SHOW_INPLACE,
    (String) null,
    (String) null,
    WDPortalNavigationHistoryMode.NO_DUPLICATIONS,
    (String) null,
    (String) null,
    "Name=" + wdContext.currentContextElement().getName());
    You have other options too like, External Window etc. other than the SHOW_INPLACE.
    The last line of the above coding is used for passing parameter to another iView.
    Give the right path of the iview PCD path, omitting pcd:
    Hope this helps.
    Regards,
    Srinivasan T
    <b>Helpful answers=>points</b>

  • Navigating from two different master pages to the same detail page

    Hi. Im using JDev 11.1.1.1.0 JDEVADF_11.1.1.1.0_GENERIC_090615.0017.5407. Fusion Web Application.
    I have two ViewObjects based on a unique entity Entity1 and each VO has a different set where clause. First, I create a master view page based on VO1 and a detail page based on the same VO1. Navigation is working fine using a link in the PK of selected row and using setCurrentRowWithKey.
    Next, I've created a second master view page based on VO2 and want to enable navigation to the detail page based on VO1. I figured the key is the same (Entity has a one column PK, and the same thing VO1 and VO2) but when I tried navigation with setCurrentRowWithKey or setCurrentRowWithKeyValue doesn't work.
    Can anybody provide steps to achieve this? Is it possible to do?
    Thanks.

    Hi,
    You might be using setCurrentRowWithKey method of VO2, if so, try to use setCurrentRowWithKey method of VO1(on which detail page is based)
    Sireesha

  • Context Navigation – Details Page

    I am trying to do a product list and details page with individual images instead of list or galleries. I have a screen with individual images, each image points to detail screen and sends the ID of each item.
    On the detail screen, I have 2 labels and an image. How can I dynamically load the labels and image from data in table that matches the passed ID?
    I have been trying to write a filter script in the image property field and the labels Text property field, but I am missing something.
    Thank you 

    You can use
    LookUp function. Set the label using LookUp(Table1, ID = selectedID, LabelValue) and set the image using LookUp(Table1, ID = selectedID, ImageLink). I am assuming you're passing the selected item's Id using the context variable selectedID and that
    you have LabelValue and ImageLink as columns in your table.

  • 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

  • Master-Detail and Detail-SubDetail navigation.

    Hi!
    I am facing an issue regarding navigation in a second (subDetail) level child table.
    I have Master-Detail-subDetail like lilnks of three VOs.
    I have created 2 VLs for Master-Detail and Detail-SubDetail.
    Now on my custom page, navigation is fine for Master-Details but for 2nd level navigation between Details-SubDetails is dependent on SingleSelection that i have used to display related reocrds in SubDetail table.
    Is there any way to display subDetails automatically (without using single selection) just like in Master-Detaills. Or at least on page load it display related records in all the tablelayouts.
    I'm using Header Layout for Master , Table layout for both Deatil and Sub Details VOs.
    Kindly help
    Regards.
    Abbasi

    Hi All!
    I think there is no solution to this problem, only single selection is the solution.
    If any one has anyother solution plz let me know.
    Thanks and regards.
    Abbasi

  • Page navigation problem in adf application.

    Hi All,
    I developed one application in ADF that is working fine in integrated WLS. But While deployed in standalone WLS the page is not navigating.
    in my application i created two pages like in First page search with table.second page details of particular row from table for that oi used
    Execute with perms with key value method from Data-control in table for row i changed to command link when i click on link the page should be navigated to details page
    in integrated WLS but its not working in standalone WLS. please give some solution.
    Regards,
    Shankar

    Shankar,
    Did you try searching for the problem first?
    Check the URL that you are using to run your application in the standalone WLS (and compare it with the URL that you use with the integrated WLS).
    I'd guess your standalone URL has ".jspx" or ".jsf" at the end of it, which means you're running a page directly and not a taskflow view activity. Try removing the ".jspx" or ".jsf" from your URL and see what happens.
    For more explanation, you can search the forum or read the Fusion Developers Guide for ADF - this question is asked about once or twice a week.
    John

  • Apex 2.1 (XE) Master/Detail Page Question Regarding Prev/Next Buttons

    When creating a page of type master/detail the master form is auto-populated with two buttons that allow the user to navigate to the previous or next record. These buttons are implemented as submit buttons, which cause the session variables to be updated with the current form values prior to moving to the previous or next record. But no database update happens because the buttons have matching before computation branches that reload the current page. It seems to me as if these buttons should have been implemented as URL redirects so as to not cause the session variables to be updated, especially since they are being updated to values that will not match the newly displayed record. And another problem is that any user changes to items on the form get picked up by the page navigation submittal and are stored into the session's item variables, yet are never persisted to the database. When code on other pages use these item variables, you can get some strange results because of this.
    My current workaround is to store each displayed item into the session during the display of the page (during the rendering phase) using the htmldb_util save_session_state function. This effectively overwrites any errant data in the session variables with what is actually being shown on the screen. (As an aside, if anyone has a better way to cause all the session variables to be updated during the fetch and page rendering step, please let me know, otherwise I will continue hand coding the save_session_state for each item in an anonymous PL/SQL block).
    Ultimately I was wondering if anyone else thought these two buttons should have been implemented by the Apex designers as URL redirects, rather than submit buttons? This would have kept the session data update from happening. Or is there a good reason to have these buttons submitting that I haven't been able to figure out?
    Thanks in advance for any thoughts on the issue.
    - Jim

    Is a before insert trigger not more interesting and safer in your use case?

  • Possible error when using ADFBC selectOneListbox in a master-detail page

    Hi Everyone,
    I'm trying to setup master - detail page with ADF BC, using Dept / Emp.
    I want to use a listbox for the master object, rather than the form + navigation commands as shown in the classic demos, so I've setup a listbox as following:
    <af:selectOneListbox value="#{bindings.DepartmentsView1.inputValue}"
    label="Available Flows:"
    id="listbox_depts">
    <f:selectItems value="#{bindings.DepartmentsView1.items}"
    id="id_Selcet_Items"/>
    The details element is the classic read-only table created by dragging the Employees view (under the departments) into the page.
    The problem arises when I run the page - the list box shows all the departments, but when I click on different departments the table data does NOT change (as it would when navigating between rows with the classical form navigation buttons).
    I've set up the Table's partial triggers to both of the listbox ids: id_Selcet_Items and listbox_depts but this doesn't help.
    Is this a bug, or am I doing something totally wrong?
    Tal.

    Tal,
    You need to drop the Dept collection onto your page as a navigation list.
    Blaise

  • Little different use case to load detail page....

    Guys. .... again in need of you expert advice....
    version: Jdev 11.1.1.3
    Following is my use case:
    - On Department detail page.... I am showing all employees details in form... (using navigation buttons) (example: Dept 1 has employee e1,e2,e3)
    - User can click the employee detail button.....(for a single employee) (example: user clicks on employee e2 detail button)
    - Need to navigate to that particular Employee detail page (with other details) and at the same time be able to navigate through (if needed by user) all employee for that department (system should show e2 detail page but user should be able to navigate through e1 and e3 employees as well)
    I have configured the system to show all the employees for a selected department and page flow works fine but having difficulty setting page to show details for e2 initially
    let me know if you want me to provide further details...
    thank you for your support....

    You need to use the setCurrentRowWithKey
    Like this:
    http://blogs.oracle.com/shay/2009/02/selecting_a_row_in_a_table_to.html

  • Regarding the detailed level navigation theme change

    Dear Experts,
    I am using Light Detailed Level Navigation iview .And in the theme if I make change for the backgrond color of the theme related to DLN its not reflecting for the entire tray .For some part of the dln the changed color is reflecting(where and all links appears) in the other parts its showing the default color.
    Can someone help me in this regard.
    Thanks,
    Regards,
    Rudradev

    Hi Sunil,
    Do you really want to place the image at the right side of the TLN - or at the header (which is different)?
    In the first case, there is a mixture of JavaScript and JSPs (containing JS) which build up the TLN, and this is quite complicated to understand (at least too complicate for a SDN thread). You would have to work through the code and try to modify it carefully.
    In the secondd case, you are touching the wrong PAR, but you would know the right one (as you opened a different thread about such a modification).
    Alternatively, you could try to use the light framework page, using the navigation tag library. This way, it is more easy to design your own UI, including the nav functionality.
    Hope it helps
    Detlev

  • Page Navigation toolbar

    The tools on my page navigation toolbar don't work when I open a pdf file on the internet.  If it's a pdf file that is stored on my computer, they work.  How do I get them to work?

    Please provide some more details:
    1. Which version of Acrobat/Reader are you using?
    2. Which browser - IE or FF?
    3. Which platform - Xp/Win7/Vista?

  • Page navigation and wildcards

    Since I use a couple of page fragments with menu's, I'm using wildcards for the navigation between pages. However, I'm trying to do things like
    <from-view-id>foo</from-view-id>
    Somehow JSC doesn't understand this. Is there any detailed information available somewhere about page navigation wildcards? I really don't feel like inserting 32 rules instead of 2 wildcards...

    The navigation file is a faces config file (as shown by the DTD at the top of the file), and the DTD (http://java.sun.com/dtd/web-facesconfig_1_0.dtd) has this to say about wildcards:
    <!--
    A "ViewIdPattern" is a pattern for matching view identifiers in
    order to determine whether a particular navigation rule should be
    fired. It must contain one of the following values:
    - The exact match for a view identifier that is recognized
    by the the ViewHandler implementation being used (such as
    "/index.jsp" if you are using the default ViewHandler).
    - A proper prefix of a view identifier, plus a trailing "*"
    character. This pattern indicates that all view identifiers that
    match the portion of the pattern up to the asterisk will match the
    surrounding rule. When more than one match exists, the match with
    the longest pattern is selected.
    - An "*" character, which means that this pattern applies to all
    view identifiers.
    -->
    <!--ENTITY % ViewIdPattern "CDATA"-->
    Thus, as you can see you're a bit limited in where you can put the *, and you can only use one.
    -- Tor
    http://blogs.sun.com/tor

  • OTL Time card || Details page || DFF

    Hello every one,
    Iam one working on OTL time card Details page.
    Navigation:CreateTimeCard>>Click on details icon on table region.
    Here we have DFF: PA_EXPENDITURE_ITEMS_DESC_FLEX
    Need to set the default value to this DFF ,even im not able find DFF in co XXXTimecardsListCO extended T
    TimecardsListCO
    Below code used:
    OADescriptiveFlexBean descFlexfieldsBean2 = (OADescriptiveFlexBean)oawebbean.findIndexedChildRecursive("PA_EXPENDITURE_ITEMS_DESC_FLEX ");
    if(descFlexfieldsBean2 != null)
    oapagecontext.writeDiagnostics(this, "descFlexfieldsBean2", 1);
    It will return null ,please help if any body worked on this.
    Regards
    Jag

    and a supervisor can't change the timecard data. He can only add the comments and reject it. Upon rejection, TC will go back to employee and he will see the supervisor's comments also.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for