Direct the control to third page from 1st page instead of 2nd page.

Hello All.
I have three seeded pages.
-When i click on *'Add Button'* On the first page, the control goes to 2nd page. When in click on *'Find Button'* on 2nd page, the control goes to 3rd page which is a search page.
My Question: When i click on Add Button on 1st page, the control should be directed to the *3rd page, the search* instead of the 2nd page.
How can i achieve it..??
What shall i write in the extension of the controller.?
Need an answer urgently.
Regards

Hi,
I understand you are trying to customize a standard page flow instead of A->B->C, you want to make it
A->C,
You have to extend the A's Controller and get the handle of the "Add Button" and transfer the page to 3rd page.
Decompile the 2nd page controller and check what the standard code is doing for the event 'Find Button' click.
You have to replicate the same.
But this could give some error, since the third page might expect some parameters which was passed from 2nd page.
You have to try and check.
Thanks.
With Regards,
Kali.
OSSI.

Similar Messages

  • Can the cell lines be removed from a table inserted in a Pages document?

    Can the cell lines be removed from a table inserted in a Pages document?

    Inspector > Table > Table > Cell Borders
    The buttons immediately below "Cell Borders" allow you to choose left, right, inside, outside etc.
    Choose None from the border style Pop-up.
    Download the Number'09UserGuide from the Help menu in Pages. Search for borders.
    Regards,
    Ian.

  • HT4356 printing page from facebook using picture and airprint page in upper left quadrant with words and margin cut off

    I have a ipad 4 with 6700 hp printer. I was told by support that the way to print a page from facebook was to take a picture of the page and then print the picture. When I do this the picture is printed in the upper left hand quadrant with part of the wording cut off. Is the only or best way to print from facebook and how can I fix the location of the print. Seems Hoaky to me
    Luther288

    Well after weeks of anguish, trips to the apple store (not very professional ), calls to Apple support (no help), calls to HP support, they transfered me to airprint support who actually told me how to fix my problem. For an HP printer download from the app store HPAIO remote print. You have to search on AIO remote print. Installed this app and now I can make the print work like I would like. Good luck

  • How to remove the option "Search This Site" from search box on customized Master Page in SP 2013

    Hi Everyone,
    I want to remove the option "This Site" from search box on Master page. I have searched this forum and found tips. I have added the
    <Property Name="DropDownModeEx">ShowDD_NoContextual</Property>
    in the file SearchArea under
    C:\Program Files\Common Files\Microsoft Shared\web server extensions\14\TEMPLATE\FEATURES\OSearchEnhancedFeature
    But it didn't work. The tips is for SP 2007. Anyone can help me to change this in Sp 2013?
    Thanks.
    <?xml version="1.0" encoding="utf-8" ?>
    <Elements xmlns="http://schemas.microsoft.com/sharepoint/">
        <Control
            Id="SmallSearchInputBox"
            Sequence="25"
            ControlClass="Microsoft.SharePoint.Portal.WebControls.SearchBoxEx" ControlAssembly="Microsoft.Office.Server.Search, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c">
     <Property Name="GoImageUrl">/_layouts/images/gosearch15.png</Property>
     <Property Name="GoImageUrlRTL">/_layouts/images/gosearchrtl15.png</Property>
     <Property Name="GoImageActiveUrl">/_layouts/images/gosearchhover15.png</Property>
     <Property Name="GoImageActiveUrlRTL">/_layouts/images/gosearchrtlhover15.png</Property>
            <Property Name="UseSiteDefaults">true</Property>
            <Property Name="FrameType">None</Property>
            <Property Name="ShowAdvancedSearch">false</Property>
            <Property Name="DropDownModeEx">HideScopeDD_DefaultContextual</Property>
     <Property Name="DropDownModeEx">ShowDD_NoContextual</Property>
            <Property Name="UseSiteDropDownMode">true</Property>
        </Control>   
    </Elements>
    This is the link I found
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/dc35ccf4-bc94-4827-9f16-83478c8642d1/removing-thissite-from-search-dropdown

    Hi
    Please try this .. add this in your master page and check
    <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
    <script>
    $(document).ready(function() {
    document.getElementById("SearchBox").children[0].children[0].value="Search";
    document.getElementById("SearchBox").children[0].children[0].title="Search";
    </script>
    Manoj Gangwar | Sharepoint 2010 MCPD | Sharepoint 2010 MCTS

  • I am able to load some pages from a particular website while other pages from the same site give the error "Firefox has detected that the server is redirecting the request for this address in a way that will never complete."

    I am able to access some directories on the website without any problems while I get the "Firefox has detected that the server is redirecting the request for this address in a way that will never complete." error for other directories of the same site.
    == URL of affected sites ==
    http://www.safelistgrande.com

    Suddenly from yesterday I am getting this error while trying to opening gmail

  • How do I stop the "Confirm Dialog Preference" box from appearing everytime I load a page?!

    Every time I a go to a new page, whether it is the same site or not, I get a dialog box that appears that reads "Confirm Dialog Preference," and the options include yes or no. How do I get this to stop? It is really, really annoying.

    Can you attach a screenshot showing the dialog?
    Does the issue still occur if you start Firefox in Safe Mode? http://support.mozilla.com/en-US/kb/Safe+Mode
    How about with a new, empty profile? http://support.mozilla.com/en-US/kb/Basic%20Troubleshooting#w_8-make-a-new-profile

  • How do I make the controls on JPanel instantiated from other class visible?

    I am using Netbeans GUI editor to create a GUI. It's really terrific....but... I have aJFrame form containing a JPanel. I also have a "panel" class that extends JPanel. I would like to insantiate an object of teh "panel" class and use it as the JPanel in the JFrame. Sounds simple enough.
    When I do this, I see the JPanel from my "panel" class gets instantiated and used in the JFrame (yay), but the button and text label do not show up.
    The JFrame is in the class/file NewJFrame.java and the JPanel is in the class/file TestJPanel.java. I'm really about to pull my hair out. ;-) Any help would be greatly appreciated...I'm sure it must be something simple I have forgotten to do.
    Here is code for NewJFrame.java
    package my.gui;
    public class NewJFrame extends javax.swing.JFrame {
    public NewJFrame() {
    initComponents();
    @SuppressWarnings("unchecked")
    private void initComponents() {
    jPanel1 = new my.gui.TestJPanel();
    setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
    jPanel1.revalidate();
    org.jdesktop.layout.GroupLayout jPanel1Layout = new org.jdesktop.layout.GroupLayout(jPanel1);
    jPanel1.setLayout(jPanel1Layout);
    jPanel1Layout.setHorizontalGroup(
    jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(0, 400, Short.MAX_VALUE)
    jPanel1Layout.setVerticalGroup(
    jPanel1Layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(0, 300, Short.MAX_VALUE)
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    getContentPane().setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
    layout.setVerticalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(jPanel1, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, org.jdesktop.layout.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
    pack();
    public static void main(String args[]) {
    java.awt.EventQueue.invokeLater(new Runnable() {
    public void run() {
    new NewJFrame().setVisible(true);
    private javax.swing.JPanel jPanel1;
    And the code for TestJPanel.java
    package my.gui;
    import java.awt.Color;
    public class TestJPanel extends javax.swing.JPanel {
    public TestJPanel() {
    initComponents();
    this.setBackground(Color.white);
    @SuppressWarnings("unchecked")
    private void initComponents() {
    jLabel1 = new javax.swing.JLabel();
    jButton1 = new javax.swing.JButton();
    jLabel1.setText("jLabel1");
    jButton1.setText("jButton1");
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(this);
    this.setLayout(layout);
    layout.setHorizontalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(layout.createSequentialGroup()
    .addContainerGap()
    .add(jLabel1)
    .addPreferredGap(org.jdesktop.layout.LayoutStyle.UNRELATED)
    .add(jButton1)
    .addContainerGap(273, Short.MAX_VALUE))
    layout.setVerticalGroup(
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    .add(layout.createSequentialGroup()
    .add(103, 103, 103)
    .add(layout.createParallelGroup(org.jdesktop.layout.GroupLayout.BASELINE)
    .add(jLabel1)
    .add(jButton1))
    .addContainerGap(174, Short.MAX_VALUE))
    public javax.swing.JButton jButton1;
    public javax.swing.JLabel jLabel1;
    }

    If you really want to learn Swing, I advise you to put the NetBeans away, and dive into the Sun Swing tutorials where you'll learn to code your Swing by hand. One of the main things that you'll learn -- and likely the thing that is tripping your current code up -- is how to use layout managers in a way that will allow you to flexibly place JPanels and other components where you want them, where they'll resize if need be, and where they'll be visible when you want them to be.
    Much luck.

  • Calling a separate BSP Page from a Web Application Builder BPS page.

    I have been creating a basic BPS application for manually entering data into BW.
    We are allowing users 2 options: 
    1. Manual Data entry via a web Page created in the Web Interface Builder.
    2. Via a Flat File using the process described in the "How To" Guide on how to load a flat file into BPS Web Page.  This was done in the Mime repository via a BSP application (transaction se80).
    I want to incorporate both method on a single web page (or group of linked pages) so that the user can choose which method that they want to use.
    My question is: How can I call the flat file loading screen (created in se80) from the Manual data entry screen that was created in Web Interface Builder?
    Thanks,
    Adam

    Adam,
    You dont have to create a new tab also. You can incorporate the newly created BSP page
    below the Manual Entry layout. Do the following step
    1. Create a text element below the layout in web application builder. Choose Edit long text
    2.insert this code
    <iframe id="Text86" border="true" name="upload4" src="/sap/bw/mime/bex/icons/pixel.gif" width="580" height="65"></iframe>
    <script language="JavaScript" type="text/javascript">
      var frame  = document.getElementById( 'Text86' );
      var url    = '/sap/bc/bsp/sap/z100bps001/upload_hours.htm';
    // set source attribute of iframe to new URL
      frame.src = url;
    </script>
    Now you should be able to the see the newly created BSP page below your layout.
    Coming to your other question on "hard coding" the answer is you shouldnt specify the absolute url, just specify the relative URL and system will take care of the rest.
    Eg. - '/sap/bc/bsp/sap/z100bps001/upload_hours.htm'
    Let me know if you need any help.
    Thanks,
    Praveen
    PS.Dont forget to reward points

  • I have a problem with a previous purchase and sign in is required. However, the card is no longer in use and so no money can be billed from it. I need to add a new card so that the money can be taken from that card instead. It's from a different country

    I have an Australian card associated with itunes and the App Store. However, I am no longer in Australia and I wish to change my country of residence and card to the UK/English. When I try to change country, it says there's a problem with a previous purchase, meaning I have no money on the Australian card and therefore the previous purchase cannot be billed.
    The only way I can pay for the previous purchase is by adding an English card but it won't let me do this.
    Does this mean I have to somehow put money on the old Australian card to pay for the previous purchase? Or is there a way I can transfer the bill to an English new card?
    Cheers guys
    Arron

    You are right, but how could i send it to Apple? when the phone company first replaced my iphone they had in stock alots of iphones and they just sent mine back to Apple and gave me a new one, so all i did is to give them my phone, but now how could i sent it to Apple? and i cant send it by myself, and the store wont do that, its a lost for them.. so sending it to Apple wasnt an option from the begining.
    and for the record, i dont think the store where i bought it is an authorized shop.. its just a store who boughts phone's from Apple in a low price and sells it in much more money..

  • Error in DTP loading from 1st level DSO to 2nd level DSO

    Hi Experts,
    I am facing a strange kind of error while loading data through a DTP included in Process chain.
    We are loading full load, from a DSO to a target DSO.
    But it gives an error, "Error in substep : Start routine".
    When i checked the error logs, it redirected me to the start routine, where a deletion statement is written.
    We checked, with some ABAP persons, the code contained no error.
    So we repeated the DTP(right click and repair), it worked fine this time.
    There are several other DTP, with the same source and target.
    As per the client requirement, we divided the loads and not loading at once.
    The same error happened with other DTP also, but repeating them solved the problem again.
    As this is only a work around, but it makes no sense as it had to be done manually everytime even though it is scheduled using a process chain.
    Any one who has encountered similar problem, please share idea/information with me.
    Regards,
    Ajay

    Hi,
    I had the same problem before, to debug the code, i put break point in the routine and couldnt find any error. Then loaded the data, it failed again. then I removed the break point from the transformation and activated it. When ever we activate transformation, a program is generated, if the program is not generated then this kind of problem occurs.
    Thanks
    Srikanth

  • How do I redirect my IPhoto Folder from 1st hard drive to 2nd hard drive on my Mac Pro ?

    How do I redirect my IPhoto folder on my first hard drive (500 GB) to the the second hard drive (1TB) in my Mac Pro.  I don't want a copy, but to move it away from the smaller HD, as it is almost at max!!
    I started with drag and drop from one HD to next HD, but it looked as if it was just going to be a copy. 
    Thank You

    iPhoto: How to move the Library folder to a new location
    Delete the original after copying it.

  • Can the ATV2 make a slideshow from movies to instead of photos?

    Hello,
    Is it possible to make a slideshow of for example 20 movies? Or do I have to select them manually?
    Thanks

    Is there a possibility to let the apple tv play steme files as 1 movie, without make it editing it in Imovie, because it takes so long to render it.
    It sounds as if you may be asking about a "playlist" here rather than a "slideshow." Basically, there two approaches. The first is to simply merge the files together as a single physical file and manage it as such. The second would be to create a new iTunes playlist, drop the files into the playlist, arrange them in the order you want them to play and then set your TV2 device to "Show Playlists > All" in the "Settings > Audio & Video" menu. Thereafter you can select the "Playlists" option in your "Computer > Movies" menu to locate/play the playlist created in iTunes. The playlist clips will now automatically play sequentially beginning with whichever clip you select/play onward down the list.

  • I have a long article I copied from Safari. I want to paste it in pages and save as document. Every time I try to do that, only what fits on one page of Pages appears. How do I copy the whole document? It would fit in five or six Pages pages.

    How do I copy a long page from Safari as a document in Pages? When I try to do it, I'm only able to get what fits in one Pages page. It would fit in ten or so.

    I'll guess that you've used a page layout document & pasting created a text box. You can add more pages & create linked text boxes, but I think you'd be better of using a word processing document. In word processing documents there is a basic text layer & additional pages will be created as needed to fit the text. Take a look at the toolbar of your document. If it says "sections" for the +page icon it's a word processing document, if it says "pages" it's a page layout document.

  • How do I configure a 1422 board so that Ext Trig 0 is directed to Control 0 in LVDS format to drive the line rate for a Dalsa camera?

    I need to take an encoder in TTL format into trigger line 0 and redirect it to output control line 0 so that the board drives it in LVDS format. This will become the External Sync line for the Dalsa CL-P1-2048 line scan camera. I assume this is done in the icd file, but the documentation on this subject and the 1422 itself is extremely poor.

    Brian,
    I do not believe you are going to do exactly what you are looking for since there is no way to write to the control lines programatically or from the camera file. If you are looking to use this signal to trigger each line, you may want to take a look at this example:
    http://zone.ni.com/devzone/explprog.nsf/6c163603265406328625682a006ed37d/f2799dc12a94be2586256a79006985ce?OpenDocument
    It uses motion and routes the encoder signal across for the line trigger. You can modify this so the input trigger is from your trigger line. I hope this information helps.
    Chris D
    NI Applications Engineer

  • I can not sign in to iCloud from the control panel on my PC

    I just purchased the New iPad and decided to do the iCloud sync.  I have installed the iCloud control panel to my Windows 7 Pro computer, but when I try to sign in from the control panel it doesn't log-in.  I have waited for an hour to see if anything would happen and it does not.  I have even tried to reinstall.  Does anyone have any ideas?

    I was having same issue here (using windows 7 64-bit). iCloud control panel used to work fine for me before this last update, but then it stopped letting me sign in. After entering apple id and password, just hangs with the spinning progress wheel forever..
    I tried uninstalling, rebooting, and then reinstalling the control panel, but still did the same thing.  I also tried changing my iCloud password;  new password worked fine for signing onto icloud.com and from my iPhone 4S but still not from the control panel. The strange part was let it would let me log into it with my wife's apple id ??
    That got me experimenting some more and I realized that the control panel worked fine from a different user profile on my windows computer!  After experimenting and nosing around in my profiles 'AppData' folder, I managed to get it to work again:
    If you have iCloud control panel log in window open, close it
    Copy this path to your clipboard:  C:\Users\%username%\AppData\Roaming\Apple Computer\Preferences
    Goto start -> run
    Paste the path and hit enter
    From the folder that is opened, rename 'MobileMeAccounts.plist' out of the way (or you can delete it if want..)
    Restart iCloud control panel and try logging on again. MobileMeAccounts.plist is regenerated the next time you sign out from control panel.
    I'm guessing that somehow my (our) original MobileMeAccounts.plist has some sort of corruption in it, or maybe some log in attempt got hosed somehow and its preventing it from even trying?   Who knows...
    Hope it works out for you too!!   ~~Corey

Maybe you are looking for