JQuery modal form - Open another page

Hi ,
I have implemented a Jquery modal form in my application.
I have a region and in the header I have the following code :
<div id="transaction" title="Update transaction details" > . This is basically a form region and has around 35 items.
I call this through the Jquery function
$("transaction").dialog('open'); This works well for me.
Now I want to move these items to a different page.
How can I call this page as a modal dialog form ?
I would like to do :
$(NEW_PAGE).dialog('open') // NEW PAGE can be an URL to the new page ?
How I can achieve this functionality ?
Thanks,
Dippy

create an html no template region:
add a html frame into source
<frame id ="eventreg" src="f?p=&APP_ID.:your application id:&APP_SESSION.::NO:your page id:your parametere:&your parameter value." height="100%" width="100%" frameborder="0"></iframe>
region header section
<div id="yourdivid">
region footer section
</div>
page header add the javascript
$(document).ready(function(){
$("#eventRegUpd").dialog({bgiframe: true,
                           width: 775,
                                 height: 525, 
                                 autoOpen: false, 
                                 modal: true                                 });
hope this will help you
regards

Similar Messages

  • Opening another Page in Modal Window

    How to open another page in a modal window by using JQuery. Also I need to pass few parameters to the other page.
    Any idea?
    Thanks
    Deb

    The definition of a modal window is a single window opened on top of other windows, so it gets the attention and is acted upon.. Like a message window asking if you want to delete all records waiting for a Yes or No answer..
    Thank you,
    Tony Miller
    Webster, TX
    A lady came up to me on the street, pointed at my suede jacket and said "Do you know a cow was murdered to make that jacket?"
    "I didn't know there were any witnesses", I replied " Now I'll have to kill you too"

  • How to redirect from list edit form to another page using jquery in sharepoint 2013

    hi friends i have been trying to find a way to redirect from list edit form to another page using javascript and jquery
    i found lot of codes online but non of them are working for me.
    what i need is i have to save the data in the form and after that it has to redirect to another page. it has to get the url from hyperlink field of the item.
    please help me in this regards

    Not sure if you have gone through below links:
    http://spservices.codeplex.com/wikipage?title=%24().SPServices.SPRedirectWithID
    http://blogs.askcts.com/2013/02/18/using-spservices-and-jquery-to-perform-a-redirect-from-a-sharepoint-list-newform-to-editform/
    Please ensure that you mark a question as Answered once you receive a satisfactory response.

  • Jquery modal form

    Hello,
    Based on this thread Re: Implement jQuery modal form I have created my jquery modal sample.
    It opens correctly when I select 'Create' or 'Edit' but does not update the value into the database table.
    Can one help me please?
    Thanks,
    Bhavin

    Hi,
    Have you created onDemand process to update the record in the database.
    Eg. make the Create code of the button similar to below
      'Create : function(){
          addRecord();
      } The create function addRecord()
    function addRecord()
       var ajaxRequest = new htmldb_Get( null , &APP_ID. , 'APPLICATION_PROCESS=myApplicationProcess' , 0);
       ajaxRequest.addParam( 'x01' , $('P1_ITEM1');
       ajaxRequest.addParam( 'x01' , $('P1_ITEM2');
       ajaxRequest.addParam( 'x01' , $('P1_ITEM3');
       ajaxResult = ajaxRequest.get();
    }Now create an ondemand process.. go to shared component .. click on application process and in process point select on demand the last option. now in the source enter the code to insert the record..
    declare
      item1 varchar2(100);
      item2 varchar2(100);
      item3 varchar2(100);
    begin
        item1 := wwv_flow.g_x01;
        item2 := wwv_flow.g_x02;
        item3 := wwv_flow.g_x03;
        insert into myTable values( item1 , item2 , item3);
        htp.prn('record successfully added');
    EXCEPTION
       when other
       htp.prn('Error adding record');
    end;Here is an example : http://apex.oracle.com/pls/apex/f?p=12060:3
    Regards,
    Shijesh

  • Implement jQuery modal form

    Hi,
    For a long time I am trying to find anything related to implementation of modal popup windows into Apex and so far no luck.
    Here is a link:
    [http://jqueryui.com/demos/dialog/#modal-form]
    and that is close to whatever I want to get. I have a page with lots of items and buttons, by clicking on one of the buttons I want modal window to popup and value from Parent Page (stored in hiden item) passed to modal window. In modal window I want to enter some data and by clicking "submit" data will go to the table and window shold be closed after that. In the same time I need Parent Page to get just entered data from modal (or just simply be refreshed)............ so it is all just basic stuff of popups and modals.....but I can not get this working.
    Anyone has done it before? Any resuls?
    Thanks a lot

    Hi All,
    I have outlined the steps to achieve the modal form below ......
    Include the below in your page template header section :
    Latest Jquery JS , ui.core.js ,ui.dialog.js,
    ui.draggable.js,ui.resizable.js // optional
    (You can download these JS files from the Jquery website)
    1) Create a Region with the items you wish to see in the modal dialog form
    2) Place the following in the region header section
    <div id="dialog" title"Create New User"> 3)In the region footer add
    </div>Add the following Javascript in your page template :
    <script>
    $(document).ready(function(){
    $("#dialog").dialog({
    bgiframe: true,
    autoOpen: false,    // hides the window by default and you will use function $("#dialog").dialog('open'); to open it
    height: 300,
    modal: true
    </script>For the Create button to open the dialog, call a javascript fucntion :
    function f_show_dialog()
    $("#dialog").dialog('open');
    }For the Modal form Submit button which inserts a row :
    function f_insert_row()
    doSubmit('SUBMIT');
    Create a Pl/sql Process that executes with the condition
    Request=expression1 where expression1 is SUBMIT
    Include a branch to the same page for this SUBMIT button.
    Phew ! Hope this was helpful.I will try to put an example on OTN soon....
    Thanks,
    Dippy
    Edited by: Dippy on Feb 19, 2010 9:45 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Use hyperlink to open another page , and pass some parameters to that page

    Hi
    Thank you for reading my post.
    How i can use hyperlink to open another jsp file in a new window meanwhile pass some parameters to it.
    for example i need something like this :
    http://127.0.0.1:8080/myProj/faces/Viewmessage.jsp?messageID=10
    i can not use session bean because i must open that in a new window and use hyperlink not Action
    Thank you

    I tried the following in the equivalent of your Viewmessage (page bean):
            ExternalContext eContext = FacesContext.getCurrentInstance().getExternalContext();
            String text = "Parameters: ";
            Iterator it = eContext.getRequestParameterNames();
            Map requestParams = eContext.getRequestParameterMap();
            while (it.hasNext()) {
                String key = (String)it.next();
                String value = (String)requestParams.get(key);
                text += "; " + key + " = " + value;
            staticText1.setText(text);That works as expected when you reach that new page via a hyper link.
    The session object is also the same as in your `old' window. So be careful about synchronization!
    I hope this helps.
    -- Marco

  • How to open another page on the same document in microsoft office 2008

    Hi, can you tell me how to open a page in microsoft office 2008, thanks

    Insert -> Page -> Page Break

  • The edit Link on my report form opens the page to create a new record.

    For some reason my applications edit link on the report form is opening a new blank entry instead of pulling the data that needs edited from that row. I just have a basic report and form. Where can I check this Edit button to see if it is linking to the existing data?

    I found my problem my select statement had the primary key column removed some how.

  • Macbook pro, unable to stop quick menu to open another page

    I am unable to open up an application.  When I click on the app, it says the profile menu is disabled while Quick Menu is in use.  How do I make this go away?

    Fugitsu ScanSnap?
    At the bottom of the below linked page.
    http://scansnapcommunity.com/tips-tricks/1749-how-to-turn-quick-menu-on-and-off/

  • When I open a web page I want a new tab to a potential new page to pop up so I can open another page without opening another broweer

    On the old firefox, when I opened a web page I could click on an unopened tab to open a new page. Now I have to go back and click on the browser again to open an entirely different page.

    Use Toolbar Layout (Customize) to open the Customize window and set which toolbar items to display.
    *if missing items are in the Customize palette then drag them back from the Customize window on the toolbar
    *if you do not see an item on a toolbar and in the Customize palette then click the "Restore Defaults" button to restore the default toolbar setup
    You can check for problems caused by a corrupted localstore.rdf file if this didn't help.
    *http://kb.mozillazine.org/Corrupt_localstore.rdf

  • When i am on college website, i click on option to go to a page and it opens another page asking for another password and pin. The college said there is a problem w/ my browser/ cookie settings. I don't know what to change.g

    I don't know about cookie settings and i've tried on internet explorer and firefox

    Hello Amish Cake  I guess tabbed browsing.  If I'm looking at nytimes and am half way down the page, click on a link and then return to the times I'm back where it originally opened.  ..Mike

  • Why does it open internet explorer from my mail to open another page now when it didnt before

    when i go to go from my mail to a page it opens up internet explore to do it and not fire fox i cant get in to change the settings to see if they are set right

    Sounds like Firefox isn't your Default Browser.
    https://support.mozilla.com/en-US/kb/How%20to%20make%20Firefox%20the%20default%20browser

  • Adding an image which should open another page on click in Agentry

    Hi All,
    I have a details page which is going to have some Measuring Point information on it. Now, I want to have a image positioned on this screen on clicking which a popup should be displayed with some information specific to the particular measuring point on whose context we are currently in.
    Could someone please guide me how to do this ? At this moment I have the required data that has to be shown for each of the Measuring Points.
    Thanks
    Arpan
    Tags edited by: Michael Appleby

    You add a click action to the embedded image control that is on your detail screen.  There is a bug with the embedded image control on some platforms on some versions of Agentry where the target you pass is ignored.  To get around this, create a dummy wrapper action that re-targets the correct object, then passes that along to the true action.  So if you wanted to target the current Point object on Detail Screen PointList, place your embedded image on PointList screen and tie it to action DummyWrapper.  DummyWrapper has a single sub-action step that runs CorrectAction and targets PointList screen -> PointList detail screen -> current Point Object.  CorrectAction navigates to your new screen to display the other data about the Point object that the dummy action will correctly pass along.
    Jason Latko - Senior Product Developer at SAP

  • Only able to edit one page from a project then must shut down to open another

    Hi!  I have upgraded to Muse CC 2014 on a Windows 7 machine, when I open a project I can only open a single page from the planning window. It will not allow me to open another page when double clicking on the page icon. If I close the first page opened I no longer have the ability to open any pages for editing. I have to FORCE QUIT Muse and reopen to edit a single page every time. Anybody have this issue and a fix? I already have went through the usual CC uninstall al reinstall so please do not suggest it.

    Thank you for providing your file. It's been very useful. Sorry for the slow reply. Adobe in the US shuts down for the 4th of July week, so the Development Team's back from leave today.
    We've isolated the cause of this and are working on an update to address it. In your file this bug is triggered by groups that contain HTML Insert objects which are slow to draw. The header on your master page contained multiple groups with HTML embed code objects. I've ungrouped those and that avoids this bug without changing the appearance of your pages. I've sent your file back to you using Adobe Send. You should receive an e-mail notification shortly, if you haven't already.
    Now that we are aware of the problem and the cause, we're actively working on an update to address it. In the meantime, if you avoid grouping HTML objects with other objects in Muse you should avoid this bug.
    Very sorry for the inconvenience. A huge THANK YOU for sending us your file.

  • Occasionally when I activate the browser it does not open my homepage but another page. why

    There are time when Firefox opens another page other than my home page. Is there any particular reason why that occurs

    Maybe you currently have your home page setting to "Show my windows and tabs from last time" instead of "Show my home page".
    *Firefox button > Options > Options > General tab > Startup > "When Firefox starts"
    *If using the Menu Bar: Tools > Options > General tab > Startup > "When Firefox starts"
    *See --> [http://support.mozilla.com/en-US/kb/How+to+set+the+home+page How to set the home page]
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

Maybe you are looking for

  • Changed provider and now fake table no longer works

    Dear all, I have moved to a new provider and uploaded all my exsisting files. Now I see that mail() and fakeRecordset no longer works. I am thinking that this maid be php version related I run at this stage 4.4.9 kindly advice on how to resolve this

  • Combine 4 angle shots into 1 video clip

    First of all, I am very much a novice in video editing and have yet to try Final Cut Pro X. I am working on a video project which will film a single subject from 4 different angles:  front, back, left and right. I would like to create a video clip wh

  • Report to see shopping cart with intervals

    Hi, I am a end user, can i check for what roles are assigned to a Particular User Like Specifically for transactions Like PPOMA_BBP, PPOSA_BBP etc. thanks a lot in advance.

  • Add new SAP Module

    Hi All, Currently my Company have 3 module implemented in our production system  MM, FI, HR and plan to implement new module PM. I'd like to know what technical things should I prepared for that plan. Such how much space  should i reserve or somethin

  • Document Preview Capability in Files?

    I have a vague memory of being demonstrated a capability within Files (though could have been email) to preview a lot of standard document types without having to download the full document. So for example it will generate a read-only html view of a