Control the scrolling of the page during a sort is done

Hello

We have an advanced SingleSelection table where the sort property is enabled for all columns. Whenever the user clicks on a column to sort, the control goes to the top of the page. So the user must scroll down to see how it was settled! Is it possible to control the scrolling while the sorting is done?


Thank you
Shree

Shree,

You cannot control this behavior, its default system.

-Shiv

Tags: Oracle Applications

Similar Questions

  • Move the Page during execution

    Hi, I create a new page when running. I have a form with 2 pages:

    Form1

    P1

    P2

    I have create a badge with the code for duplicate page:

    Form1. P1.occur.Max = '2 ';

    Form1. P2.occur.Max = '2 ';

    Form1. P1.instanceManager.addInstance (true);

    Form1. P2.instanceManager.addInstance (true);

    Order now page:

    P1

    (new istance of P1)

    P2

    (new istance of P2)

    but I want to take this command

    P1

    P2

    (new istance of P1)

    (new istance of P2)

    How can I do?

    Kind regards.

    Hello

    You can do this with a set of subform.  Make the subform repeat value and have it select a subform in alternatives and each repetition can then either P1 or P2 event, you should set P1 and P2 to repeat with a min of zero occurrence.

    So to add a P1, you'd (assuming that the entire subform is called pages);

    var pages = _Pages.addInstance ();

    var p1 = pages._P1.addInstance ();

    Here is a very basic example. https://sites.Google.com/site/livecycledesignercookbooks/home/Federico_Benini.PDF?attredir ects = 0 & d = 1

    Concerning

    Bruce

  • Possible to have shared SelectList in the Page template?

    Hi all

    I have a simple question about "what I am missing?

    We want to add a dropdown "Select job number" to each page. The drop-down list is based on a database query.

    All the work is done, but I have a problem.

    We are creating a SELECTLIST element on each page!

    We use a < div > shared region in the Page template.

    We use a javascript in the Page template code.

    We use a common OracleSQLPackage for the entire treatment.

    We use a shared item in demand for the job number.

    But on each page, we have controls on the page P185_SELECTLIST, P186_SELECTLIST, P187_SELECTLIST, P188_SELECTLIST, P189_SELECTLIST... and the problem will only get worse.

    How do we code the drop-down list in the page template?

    Is it by creating the shared list?

    Thanks for your help

    user8115477 wrote:

    Please update your forum profile with a recognizable username instead of "user8115477": Video tutorial how to change username available

    I have a simple question about "what I am missing?

    One thing missing is that information which is necessary to obtain a rapid and effective response when ask you a question.

    We want to add a dropdown "Select job number" to each page. The drop-down list is based on a database query.

    All the work is done, but I have a problem.

    We are creating a SELECTLIST element on each page!

    We use a shared

    area in the Page template.

    We use a javascript in the Page template code.

    We use a common OracleSQLPackage for the entire treatment.

    We use a shared item in demand for the job number.

    But on each page, we have controls on the page P185_SELECTLIST, P186_SELECTLIST, P187_SELECTLIST, P188_SELECTLIST, P189_SELECTLIST... and the problem will only get worse.

    How do we code the drop-down list in the page template?

    You do not have. Add a global page to the application and create the item selection list it. Dynamic measurements can also appear on the overall page to implement the behaviors associated with the element. Conditions can be used to control the pages of the element and the DAs are displayed on.

  • How to control the footer to the NOSE section?

    Hello

    I have a problem with the release of the RTF on preprinted layout.

    The situation is the following:
    I have a RTF who send invoices. Each bill has certain number of lines and the RTF deadline 6 lines per page for each invoice.

    Some lines of the invoice contain values of media objects (line attachments) to JDE and they are very long in size.

    When I preview the output, for invoices with normal lines, they appear well and the footer will appear at the end (there is a dissociation if it's breaking 6 rows on each page until you find the footer)

    When the Bills have the multimedia objects (<?) Generic_Text_ID22? (> in the xml file), the footer is not printed at the bottom of the page, but somwhere in the middle.

    Please note that I do not use the foot of Page in MS Word to this effect, but a table at the bottom of the page.

    My questions are:
    1. by not using not to foot of Page in MS Word, how can I control the page footer section so that it appears in a fixed position at the bottom of the page? (Regardless of the attachment lines)
    2. using MS Word footer, how can I control the page footer section so that it is printed only on the last page of the invoice (if there is more than one page) instead of repeat on each page?

    Thank you.

    Move the total to the total and use logical Report footer section.

  • PrintDataGrid of printing only half of the page

    Hello

    I have a print of my report with PrintDataGrid problem. I just copied and paste the sample code from this site form, but she seems to have a problem. Printing in the book is only half and jump to another page. rank 1-6 is on the first page and the rest is on the next page that was supposed to be on a single page. I am asking your help to find ways to print correctly.

    Here, I have the code:

    FormSalesTransaction.mxml

    <fx:Script>
              <![CDATA[
                   import mx.core.*
                        
                        // Declare and initialize the variables used in the component.
                        // The application sets the actual prodTotal value.
                   [Bindable]
                   public var pageNumber:Number = 1;
                   [Bindable]
                   public var prodTotal:Number = 0;
                   
                   // Control the page contents by selectively hiding the header and
                   // footer based on the page type.
                   public function showPage(pageType:String):void 
                   {
                        if(pageType == "first" || pageType == "middle") 
                        {
                             // Hide the footer.
                             footer.includeInLayout=false;
                             footer.visible = false;
                        }
                        if(pageType == "middle" || pageType == "last") 
                        {
                             // The header won't be used again; hide it.
                             header.includeInLayout=false;
                             header.visible = false;
                        }
                        if(pageType == "last") 
                        {
                             // Show the footer.
                             footer.includeInLayout=true;
                             footer.visible = true;
                        }
                        //Update the DataGrid layout to reflect the results.
                        validateNow();
                   }
              ]]>
         </fx:Script>
         
         <!-- The template for the printed page, 
         with the contents for all pages. -->
         <mx:VBox width="90%" horizontalAlign="left">
              <mx:Label text="Page {pageNumber}"/>
         </mx:VBox>
         <MyComp:FormPrintHeader id="header"/>
         
         <mx:PrintDataGrid id="myDataGrid" 
                               height="100%"
                               width="100%"
                               fontSize="7" 
                               wordWrap="true" 
                               variableRowHeight="true" 
                               fontFamily="Lucida Console" >
              <!-- Specify the columns to ensure that their order is correct. -->
              <mx:columns>
                   <mx:DataGridColumn headerText="Invoice" dataField="InvoiceNo" width="65"/>
                   <mx:DataGridColumn headerText="Customer" dataField="CustomerName" width="100"/>
                   <mx:DataGridColumn headerText="Model" dataField="ModelNo" width="70"/>
                   <mx:DataGridColumn headerText="Category" dataField="CategoryCode" width="70"/>          
                   <mx:DataGridColumn headerText="Price" dataField="Price" width="80"/>
                   <mx:DataGridColumn headerText="Qty" dataField="Quantity" width="35"/>                    
                   <mx:DataGridColumn headerText="Cash" dataField="Cash" width="80"/>
                   <mx:DataGridColumn headerText="Dollar" dataField="Dollar" width="80"/>
                   <mx:DataGridColumn headerText="Cr Card" dataField="CreditCard" width="80"/>
                   <mx:DataGridColumn headerText="B Share" dataField="Bankshare" width="80"/>
                   <mx:DataGridColumn headerText="W Tax" dataField="WTax" width="80"/>
                   <mx:DataGridColumn headerText="Lay Dep" dataField="LayawayDP" width="80"/>
                   <mx:DataGridColumn headerText="Lay Bal" dataField="LayawayBal" width="80"/>
                   <mx:DataGridColumn headerText="Check" dataField="Check" width="80"/>
                   <mx:DataGridColumn headerText="Misc" dataField="Misc" width="80"/>
                   <mx:DataGridColumn headerText="Remarks" dataField="Remarks"/>
                   <mx:DataGridColumn headerText="Lay Pay" dataField="LayawayPayment" width="80"/>
              </mx:columns>
         </mx:PrintDataGrid>
    

    and the way that I call Report.mxml:

    var printJob:FlexPrintJob = new FlexPrintJob();
                        
    if (printJob.start()) {
            var thePrintView:FormSalesTransaction = new FormSalesTransaction();
         addElement(thePrintView);
                             
         thePrintView.width=printJob.pageWidth;
         thePrintView.height=printJob.pageHeight;
                                                 
         thePrintView.prodTotal = prodTotal;
                             
         thePrintView.myDataGrid.dataProvider = salesTransaction;
                             
         thePrintView.validateNow();
                             
         if(!thePrintView.myDataGrid.validNextPage)
         {
              thePrintView.showPage("single");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
         }
         else
         {
              thePrintView.showPage("first");
              printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
              thePrintView.pageNumber++;
                                  
              while(true)
              {
                   thePrintView.myDataGrid.nextPage();
                                       
                   thePrintView.showPage("last");  
                                       
                   if(!thePrintView.myDataGrid.validNextPage) 
                   {
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        break;
                   }
                   else
                   {
                        thePrintView.showPage("middle");
                        printJob.addObject(thePrintView, FlexPrintJobScaleType.MATCH_WIDTH);
                        thePrintView.pageNumber++;
                   }
              }
         }
         removeElement(thePrintView);
    }          
    printJob.printAsBitmap = false;                    
    printJob.send();
    

    Here is the result when I print the report:

    printout.jpg

    I hope you have some time to help me.

    Thankz a lot.

    Can you check and see if the fact no difference if variableRowHeight attribute set to false?

    It looks like a problem of container.

  • How can I go back to the bar of reminder of password rather that the notification that I now get that obscures some of the page

    The notifcation ' do you want Firefox to remember the password for... on appeared as a horizontal bar at the top of the page, under the tabs.
    It covers a part of the top left of the page as a sort of 'call-out '. I want to remember the passwords for some sites and continue to see the reminder, but I don't want that to hide part of the page. It's worse in my netbook because the screen is relatively small, so the proportion of the hidden page is relatively high. In which version has it changed? How can I get the password reminder to return to a horizontal bar in Firefox v9?

    You can close and reopen that don't forget to pop up password at any time by clicking on the icon key on the address bar if it is troublesome.

  • Need of utility to control the speed of the fan on Satellite A200

    Hello everyone, my Toshiba Satellite A200 1 GB brought 80º C on CPU, GPU and start making problems at this temperature, and I hear that the fan is not at its maximum when that happens.

    I have a cooler base for her but doesn´t work like I want.
    My question is if there is a program or a utility to control the fan speed. I I Don t want to set the lower clock speed, because I use it for HD games, just set up the fan.
    SpeedFan doesn´t recognize my CPU fan.

    Thank you!

    Have you checked for dust in the radiator?

    With the laptop off, use compressed air to blow the dust out of the heat sink. Spray the air into the unit where the Air goes out usually.

    If there is excessive dust accumulation, you may need to get an ASP to disassemble the laptop to remove dust properly, then refresh the thermal grease.

  • Based on the same Page of each tab and don't delete. Need help!

    [UPDATED BELOW WITH THE SOLUTION]

    The best way I can describe what I'm trying to achieve is the native music BB10 application navigation structure.

    Once you click on a track, you have to push the "Now Playing" view, and then that you go back to the navigation of your library, you can return to this view via a thumbnail image in the title bar. Of course, the view is not destroyed, that the page is running the music. But as you will see, this miniature in the title bar can be found in all the tabs and push the view "Now Playing" no matter what tab, you're in.

    I find it impossible to reproduce. I have a NavigationPane in each of my tabs, and maintain a single instance of the "Now Playing" view in the variant of nowPlayingView property. All seen below in my main.qml file:

    import bb.cascades 1.0
    
    TabbedPane {
        property variant nowPlayingView: nowPlayingComponent.createObject()
        Tab {
            id: tab1
            NavigationPane {
                id: navPane1
                FirstView {
                }
            }
        }
        Tab {
            id: tab2
            NavigationPane {
                id: navPane2
                SecondView {
                }
            }
        }
        Tab {
            tab3
            NavigationPane {
                id: navPane3
                ThirdView{
                }
            }
        }
        Tab {
            tab4
            NavigationPane {
                id: navPane4
                FourthView{
                }
            }
        }
        attachedObjects: [
            ComponentDefinition {
                id: nowPlayingComponent
                source: "NowPlaying.qml"
            }
        ]
    }
    

    Then, all pages, it is easy to access the nowPlayingView and push it through the respective navPane. The code below is from FirstView.qml which is in tab 1.

    navPane1.push(nowPlayingView);
    

    The problem is that I can successfully push this nowPlayingView one of the tabs, as long as it's the first time. So if I push everything first using navigationPane of Tab1, I am unable to shoot from all others, but it can grow as many times I want again on Tab1. The same applies if I pushed first view of the Tab2.

    How can I push this view of one of the tabs, while not to delete the page each time it is released. Please, please, any help would be appreciated. Just check out the music app native bb10 to understand the flow of navigation that I try to imitate. And as I understand it, it is not possible to use a single navigationpane for all tabs.

    Thank you!

    [CODE WORK] thanks to Zmey!

    QML, before pushing the view I must remove its previous parent by calling on C++.

    app.removePageParent(mediaView);
    navPane.push(mediaView);
    

    Using this helper function from C++ to remove the parent of the page

    void ApplicationUI::removePageParent(QObject *o) {
        //qDebug() << "removing page parent";
        o->setParent(NULL);
    }
    

    It will be for some reason doing two "back" button when you press the view again (bug sdk). To resolve this issue, manually set the back button.

    paneProperties: NavigationPaneProperties {
            backButton: ActionItem {
                onTriggered: {
                    mediaView.parent.pop()
                }
                title: "Back"
            }
        }
    

    I hope this helps someone! All creds to Zmey!

    Hello

    push() method description mentions that the parent of the page must be null or NavigationPane to which the page is pushed in.

    Try setting page.parent to null before pushing the page (this also can be done in NavigationPane onPopTransitionEnded).

    UPD: it did not work because the parent is readonly in QML. We had to make a C++ helper function and use setParent().

  • Center of a region in the middle of the page

    Hi all.

    APEX 4.2.5

    XE 11.2

    Theme 26

    Page template: No tabs, sidebar left and right

    I have a single region HTML with a bunch of buttons on it that Im using menu... Model region using Im is "body of Template of Page 3. There is nothing else on the page.

    I want to center the region HTML as well horizontally as vertically in the middle of the page... Ive done some research and there seems to be a lot of options, but so far none of them does not work for me.

    Any help would be appreciated...

    Kind regards

    Richard

    It's close:

    html {
      overflow: hidden;
    }
    html, body, form#wwvFlowForm {
      height: 100%;
    }
    div#uBodyContainer {
      position: relative;
      min-height: 100%
    }
    table#uPageCols {
      margin: 50% auto;
    }
    section.uRegion {
      margin: -50% auto;
    }
    footer#uFooter {
      position: absolute;
      bottom: 0;
    }
    

    Put the style sheet in CSS Inline property page. The footer content needs twisted (or disappear completely).

    I suggest using the Tabs No.-No. Sidebar page template if you do not use the boxes in order to eliminate the unnecessary complexity of the table.

  • Why is my data merge going off the page?

    After playing with the merging of data for a bit today, everything is working except that rather than start a new page when there isn't any room left on the first page, the next record will just outside the margin down and overwhelmed the edge of the page itself. What I don't see? I only use sample data at the present time, with 4 records. There is place at 3 on a page.

    Several records per page fusion is bug. One of the most important is the Preview button. If you used the Preview button, most likely the model is watered.

    Try to create a new model and perform the merge without the preview or cancel immediately after using it. You can usually copy the pictures from the old model without a problem, rather than having to make them again.

  • Some parts of the page is cut when it goes to the next page.

    This page is the page that converted to PDF after submit button click on it
    According to the amount of text, put user in the form of entry
    < cfinclude template = "attributeinclude.cfm" >
    < cfinclude template = "attributeinclude2.cfm" >
    < cfinclude template = "attributeinclude3.cfm" >
    and
    the text box checked stretch to 2-3 pages pdf or limited to only the first page.

    The content of
    < cfinclude template = "content1.cfm" >
    < cfinclude template = "content2.cfm" >
    < cfinclude template = "content3.cfm" >
    < cfinclude template = "content4.cfm" >
    are sometimes cut in half
    My goal is to be together the < cfinclude template = "content1.cfm" > 2 and 3
    not forever Breal? If it remains on the first page, then it would be in the lower part of the page.
    If she goes to the second page, then it does not break. It also should go either on the home page if it is the only or the lower part of the page as well
    Thank you

    Don't know what I'm talking about yet, but help?
    Do I put this code and where?
    Here is the code

    Thank you

    A few notes:

    -Place the lines of code out of the cfdocument tag cfparam.

    -remove the link cfdocument tag. The link tag can only appear in the head section of the page.

    -remove the cfoutput tag. There is apparently no need;

    -remove the long comment lines . If you need break the document into sections, use the cfdocumentsection tag. A previous thread contains an example of the use of section tags and cfdocumentitem and cfdocumentsection feed page.

    said: You should consider installing Coldfusion MX 7 patches if you have not already done. One patch is for cfdocument text cut problems.

  • Scrolling the mouse not working not not to scroll through the pages. cannot change the Volume control. How to fix?

    Original title: scroll of the mouse wheel only adjusts the volume. How to scroll through the pages again?

    Using the wireless mouse (Silvercrest MTS2218-m with win 7 x 64) and scroll wheel is no longer made scroll page up and down in any program. Only, it adjusts the volume. How to scroll through the pages again?

    Already checked the settings in Control Panel > mouse nothing obvious here to change this annoying feature. And have already uninstalled the driver for the mouse in Device Manager but no change. have also stopped and started several times laptop.

    Close to the scroll wheel is a dpi button, which can also be used to pass
    between normal mode and media holding for 3 seconds. In media mode
    the volume control wheel and does not scroll.
    Read the manual... ;-)

  • During the scrolling the page of electronic mail, the police suddenly shrank almost unreadable. How to restore the (yahoo) main page email font size?

    After admitting to main email on yahoo page, I've been scrolling with the scroll on my mouse, and the size of the font on the entire web page suddenly shrunk to half the normal size. Now it's too small for me to use.

    This has happened

    Each time Firefox opened

    == I'm scrolling my mouse on the web page of main email in Yahoo.

    Make sure that you do not press CTRL while rotating the mouse wheel.

    Reset the page zoom on pages that cause problems: view > Zoom > reset (Ctrl + 0 (zero); Cmd + 0 on Mac)
    See the font size and zoom - increase the size of web pages and the font size and zoom - increase the size of web pages and http://kb.mozillazine.org/Zoom_text_of_web_pages

  • Why the page automatically scrolls to the cfgrid controls

    I have a page that is large enough so that it scrolls vertically. When it finishes loading, the browser scrolls automatically to the bottom of the page where a cfgrid element. It happens in IE, Chrome, and Firefox.

    I reduced the cause down to the JavaScript server ColdFusion 11 adds at the top of the page. If I disable scripts in the browser, the page does not automatically scroll down.

    Addition of window.scrollTo (0,0) at the onload of the body does not work. What JS is scrolling down occurs after the onload event. I have not tried. ready() jQuery yet; in the hope there is a fix.

    Has anyone else seen elsewhere and don't know a fix or a workaround?

    I found that the solution is to add the attribute selectOnLoad = "false" to the cfgrid tag. Its default value in CF11 is 'true '. I'm not sure CF10, but in CF9 is seems to default to 'false '.

  • Control the OFA page scrolling

    Hello

    In the OAF page, we have developed, when you click button SAVE to save the data, the screen is up i.e. that it scrolls automatically to the top of the page when save the ends of the event.

    There are also same thing when we click the button 'Add to the GRID' in a table that has multiple choice.

    Let me know if there is a way by which we can manage this problem and focus on the part of the page desired.

    Thanks in advance
    Saurabh

    test fire partial action instead of full submit.

    Prasanna-

Maybe you are looking for