Modal Page Plugin showing Blank Page.

Hi All,
I am using Skillbuilder modal page 2.0 in APEX 4.2.
Whenever I open the modal page, Blank page opens.
Can anyone guide me what could be the problem.
To open the modal page, I did the following steps.
1. Installed Plugin 2.0
2. From parent page I created a button. Set action to "Defined by Dynamic Action". (I also tried defining button id="CREAT_BUTTON" , Dynamic action with jQuery selector etc. as shown in sample video. But that also doesn't work.)
3. Created Dynamic action, on Click, mentioned the button and gave the path of new page to open.
4. Changed component setting for plugin, and set the theme to 1.

Hi,
Your "Embed in Frames" setting was set to "Deny" under Edit Application Properties -> Security -> Browser Security.
I have set it to "Allow from same origin".
This has resolved the issue. Please test.
I suggest that you change the page template of page# 2 to "Popup". That way you can avoid application logo, navigation bar etc on the modal window.
Thanks,
Rohit

Similar Messages

  • I'm in a multi-page document, how can i rearrange the pages or insert blank pages in front of pages? Also, is there a way to show the ruler both horizontally and vertically?

    I'm in a multi-page Pages document, how can i rearrange the pages or insert blank pages in front of pages? Also, is there a way to show the ruler both horizontally and vertically?

    Not on my document. I have a 7 page document open. The "flashing vertical bar" is at the top of page 3. I have the thumbnail view showing. I click page break and two blank pages are added to the end of my document. I have to scrool thru the pages to see that the 2 pages were added as they do not appear in the layout view... I'm not sure if it is inserting a "section" as it adds two blank pages.. But I am clicking on "INSERT PAGE BREAK".. So guess there are still a lot of bugs to fix..
    Thanks again

  • It's been 4 days now my App Store show 2 message it means that I have to update some applications but every time I open my App Store and press update it only shows blank page but if I press genius, top charts, featured, search I can browse them

    It's been 4 days now my App Store show 2 message it means that I have to update some applications but every time I open my App Store and press update it only shows blank page but if I press genius, top charts, featured, search I can browse them

    It's been 4 days now my App Store show 2 message it means that I have to update some applications but every time I open my App Store and press update it only shows blank page but if I press genius, top charts, featured, search I can browse them

  • I have itune 10.5 with windows 7, when i click itune store it is not connected and show blank page

    I have itune 10.5 with windows 7, when i click itune store it is not connected and show blank page.

    You can't, Anh.  That's what people are telling you.  At this time there's no way to get out of recovery mode.   You're playing around with beta software and this is what you get.
    Tell your "developer friend" he needs to talk to other developers to see if this can be fixed, or have him replace your devices that you should never have let him play with to begin with.

  • My appstore says cannot connect to iTunes and it shows blank page i tried all advices but there is no result shall give my iPad to the apple store to make it

    My appstore says cannot connect to iTunes and it shows blank page i tried all advices but there is no result shall give my iPad to the apple store to make it   

    I think you should probably also read the iPad User Guide. You didn't say what version of iOS your iPad is running, so here's the links to both the iOS 6 and iOS 7 (PDF) versions:
    iPad User Guide for iOS 6
    iPad User Guide for iOS 7

  • The App Store indicates that 5 items need to be updated. When I go to the Update page, only a blank page appears and no application logo appears for updating. Would appreciate receiving a solution for this.

    The App Store indicates that 5 items need to be updated. When I go to the Update page, only a blank page appears and no application logo appears for updating. Would appreciate receiving a solution for this.
    Sridhar

    Okay - let's cut to the chase...
    If the Menu Bar (File, Edit... Help) shown in my screenshot below is not visible, use CTRL+B to display it. Then click on Help/Check for Updates. If one is available, you will be able to select it at this time.
    Note the item at the bottom of the list; About iTunes. Selecting that will show you which version of iTunes you are using.
    An alternative method to display the Menu Bar is click on the box in the top left of your iTunes window...

  • How do I set the blank tab (+) to go to my home page instead of blank page when opend?

    How do I set the blank tab (+) to go to my home page instead of blank page when opened?

    You can do that by using an add-on such as [https://addons.mozilla.org/firefox/addon/2221/ NewTabURL] or [https://addons.mozilla.org/firefox/addon/777/ New Tab Homepage].

  • How do I make new tabs open to my specified home page instead of blank page?

    How do I make new tabs open to my specified home page instead of blank page?

    I generally like to avoid add-ons, and the second option is still an extra step - not opening tabs to the homepage, as requested (rather how to switch to your Home page after a tab opens to the blank page).
    Here's a wild idea: How 'bout a setting option in Tools > Options > Tabs for "Always open new tabs to my Home page" ?

  • Print scaleType:showAll, generates 2 pages, the correct page and one blank page

    Hello,
    So I have a the following function:
    private function printJobCreator():void{
    var printJob:FlexPrintJob=new FlexPrintJob();
    printJob.start();
    printJob.addObject(printableInvoice, "showAll");
    printJob.send(); 
    invoiceIndex++;
    printAll();
    It seems to kind of work. However when it prints, it creates one page that is the right page, and one page that is blank. This isn't going to work for me because I have to run batches of many pages, so having every other page as a blank page isn't an option.
    Additionally, my goal was to print multiple pages in one printJob for batch reports. This unfortunately doesn't seem like it is going to work. I was able to make a component that essentially would repeat container.addChild(printableInvoice) for each index in an object, each printableInvoice containing some dynamic concept, however I can't for the life of me get it to print like this.
    So the current solution is annoying because for each invoice you have to go through the print dialogue again. Any Ideas? I realized I could do multiple printJob.addObject() calls, but this doesn't work for me because of the blank page issue.... So I either need to solve the blank page issue or generate a UI object that has multiple printableInvoices in it and print that UI object.
    Any help?
    Joel

    This is the flow, I don't see how it could be adding twice. The important stuff happens when the printAll(); function is run.
    <fx:Script>
    <![CDATA[
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import mx.printing.FlexPrintJob;
    import mx.rpc.events.ResultEvent;
    public var Orders:Object = new Object();
    public var printOrders:Array = new Array();
    public var postOrder:String="";
    public var invoiceIndex:int=0;
    private function init():void{
    getDataResult.token = orders.getData();
    getDataResult.addEventListener(ResultEvent.RESULT, Orders_resultHandler);
    private function Orders_resultHandler(event:ResultEvent):void{
    Orders = getDataResult.lastResult;
    for(var i:int=0; i <= Orders.length-1; i++){
    if(Orders[i].print == 0){
    printOrders.push(Orders[i]);
    postOrder=printOrders[0].orderid;
    for(var t:int=1; t <= printOrders.length-1; t++){
    postOrder = postOrder + ","+printOrders[t].orderid;
    private function orderToShipSorter():void{
    private function printAll():void{
    if(invoiceIndex <= printOrders.length-1){
    printableInvoice.generateInvoice(printOrders[invoiceIndex]);
    private function printOrderResult(event:ResultEvent):void{
    private function checkLogin(event:ResultEvent):void{
    private function printJobCreator():void{
    var printJob:FlexPrintJob=new FlexPrintJob();
    printJob.start();
    printJob.addObject(printableInvoice, "showAll");
    printJob.send(); 
    invoiceIndex++;
    printAll();
    protected function printableInvoice_batchGeneratedHandler(event:Event):void
    printJobCreator();
    ]]>
    </fx:Script>

  • How do it set new tabs to show my home page rather than blank page?

    Whenever I click on a "new tab" is shows a blank page. (it use to show the Mozilla user update page) However, I wish to see my home page "Google" every time I open a new tab.

    You can look at one of these extensions:
    * NewTabURL : https://addons.mozilla.org/firefox/addon/2221
    * New Tab Homepage : https://addons.mozilla.org/firefox/addon/777
    Other things that need attention.<br>
    See http://www.mozilla.com/plugincheck/
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.1 r53
    # Java Plug-in 1.6.0_10 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • Safari "help- plugins" shows white page

    On OS X 10.8.5, safari 6.0.5, click "help" then "installed plugins" - and it shows a blank page.
    I've installed the latest Java VM 7 update 45, and in the control panel it shows ok, but when I go to the Sun verify page, it says "missing plugin"...
    so I know there is a problem.
    any ideas?

    From the Safari menu bar, select
    Safari ▹ Preferences ▹ Security
    and check the box marked Allow other plug-ins.

  • Preview shows blank pages

    I've just received a 13 page pdf file. Opening it with Preview showed me 13 blank pages. Opening it with Acrobat showed me the pages as they are supposed to look. What's going on? Why can't Preview show the contents? (The file was created on a PC, if that's relevant, by scanning in the pages, but I don't know the procedure after that.)
    I'm using 10.3.9, all updates installed, on a G4/1.25 PowerBook.
    Susan K

    Hi Susan,
    I can't explain the anomaly, but I experience similar problems with Preview when I attempt to view PDF docs that are created by my company, and also by a friend who is a missionary in Cameroon Africa (who I presume is using a PC to create the PDF docs...). I'm guessing that the program that creates their PDFs is causing the 'headache' for our version of Preview...
    The PDFs created by my company will not be 'searchable', and most of the text of PDFs created by my friend will be unreadable by Preview.
    Of note, an associate who uses Tiger, does not seem to have the same problems with his version of Preview...
    Bob

  • App Store showing blank pages in Yosemite

    After my update to Yosemite the AppStore behaves severely crippled.
    The main "Featured" , "Top Charts", "Updates" and "Purchases" page work normal,
    however the "Categories" page only shows the category titles, and worse: going into any detail page for an App gives me a completely blank page.
    I already tried to restarted to system, but no change.
    When starting AppStore from the iTerm the following error is included on startup (not sure if it's an expected message):
    2014-12-02 10:50:01.130 App Store[9040:43093] Unknown class 'FRPageController', using 'NSObject' instead. Encountered in Interface Builder file at path /System/Library/PrivateFrameworks/StoreUI.framework/Resources/Base.lproj/FRStor eViewController.nib.
    2014-12-02 10:50:01.131 App Store[9040:43093] Failed to connect (delegate) outlet from (NSObject) to (FRNavigationController): missing setter or instance variable
    2014-12-02 10:50:01.132 App Store[9040:43093] Failed to connect (view) outlet from (NSObject) to (FRWindowBackgroundView): missing setter or instance variable
    2014-12-02 10:50:01.132 App Store[9040:43093] Failed to connect (pageController) outlet from (FRNavigationController) to (NSObject): missing setter or instance variable
    2014-12-02 10:50:01.171 App Store[9040:43093] NSWindow warning: adding an unknown subview: <_NSThemeCloseWidget: 0x7fae91f23430>
    2014-12-02 10:50:01.173 App Store[9040:43093] Call stack:
      0   AppKit                              0x00007fff95b5ba9c -[NSThemeFrame addSubview:] + 107
      1   AppKit                              0x00007fff9554aa3f -[NSView addSubview:positioned:relativeTo:] + 208
      2   StoreUI                             0x0000000100a1e10a -[FRWindow handleToolbarViewChangedNotification:] + 1085
      3   CoreFoundation                      0x00007fff976e8cbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      4   CoreFoundation                      0x00007fff975da1b4 _CFXNotificationPost + 3140
      5   AppKit                              0x00007fff954c6989 -[NSView _postFrameChangeNotification] + 422
      6   AppKit                              0x00007fff954c5996 -[NSView setFrameOrigin:] + 862
      7   StoreUI                             0x0000000100a1df90 -[FRWindow handleToolbarViewChangedNotification:] + 707
      8   StoreUI                             0x0000000100a1db24 -[FRWindow setToolbar:] + 183
      9   App Store                           0x00000001009f214f App Store + 8527
      10  AppKit                              0x00007fff956dc4e7 -[NSWindowController _windowDidLoad] + 586
      11  AppKit                              0x00007fff956c36a2 -[NSWindowController window] + 110
      12  App Store                           0x00000001009f19c8 App Store + 6600
      13  CoreFoundation                      0x00007fff976e8cbc __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
      14  CoreFoundation                      0x00007fff975da1b4 _CFXNotificationPost + 3140
      15  Foundation                          0x00007fff97963ea1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
      16  AppKit                              0x00007fff9548e187 -[NSApplication finishLaunching] + 440
      17  AppKit                              0x00007fff9548dc51 -[NSApplication run] + 128
      18  AppKit                              0x00007fff954792d4 NSApplicationMain + 1832
      19  libdyld.dylib                       0x00007fff908dc5c9 start + 1
      20  ???                                 0x0000000000000001 0x0 + 1
    2014-12-02 10:50:03.094 App Store[9040:43093] addOperation <ISProcessPropertyListOperation: 0x7fae91c9a8f0>{name = '(null)'}
    I've also performed a "Linc Davis system analysis", the results of which can be found here in Pastebin:
    http://pastebin.com/1J2cXYZx
    Any suggestions?
    Thanks,
    Martijn

    Please read this whole message before doing anything.
    This procedure is a test, not a solution. Don’t be disappointed when you find that nothing has changed after you complete it.
    Step 1
    The purpose of this step is to determine whether the problem is localized to your user account.
    Enable guest logins* and log in as Guest. Don't use the Safari-only “Guest User” login created by “Find My Mac.”
    While logged in as Guest, you won’t have access to any of your documents or settings. Applications will behave as if you were running them for the first time. Don’t be alarmed by this behavior; it’s normal. If you need any passwords or other personal data in order to complete the test, memorize, print, or write them down before you begin.
    Test while logged in as Guest. Same problem?
    After testing, log out of the guest account and, in your own account, disable it if you wish. Any files you created in the guest account will be deleted automatically when you log out of it.
    *Note: If you’ve activated “Find My Mac” or FileVault, then you can’t enable the Guest account. The “Guest User” login created by “Find My Mac” is not the same. Create a new account in which to test, and delete it, including its home folder, after testing.
    Step 2
    The purpose of this step is to determine whether the problem is caused by third-party system modifications that load automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Please take this step regardless of the results of Step 1.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of Steps 1 and 2.

  • Horizontal scrolling to next article shows blank page

    I've found a bug when scrolling horizontally between articles it will sometimes add a blank page to the adjacent article. This is remedied by scrolling up (which removes the blank page) but will reappear if I scroll back two articles and then forward two articles again.
    Here are some images showing what I mean.

    I've seen this also.

  • Google browser in "go to" option shows blank page upon loading.

    Hello there, I am a newbie in the blackberry world. I just got mine, Bold 9700 for my engagement present. I am using it for about a week form. I am Malaysian and I am using the DiGi carrier. At first everything going smoothly, web browsing is excellent. I downloaded some great application mainly form google mobile, such as google maps, google for mobile and gmail.
    since last 2 days, I encounter some problem with the web browser. when i tried to search something using the blackberry browser in the "go to" option. I often encounter the blank page, especially using the google browser option. when i turn to yahoo, the browser works well. The blank screen also happen when i tried to type some web address such as wikipedia.org and so on. The blank page still happen. Regarding the "blank page", the loading screen appear when finish loading, the screen leave only blank space. left was only the scroll down bar on the left.
    I tried to solve why it was happening, the google browser in the "go to" option can be functioning when I change the "set encoding". I tried each of the encoding and I found one is functioning (partially). Initially the encoding was in auto and shows the ISO-8859-1. the partially working encoding is ISO-2202-CN. the google was working but the web adress bar encounter the "blank screen" problem.
    I called the service center of my carrier, DiGi. They did guide me to solve the problem. The pull out the battery methods, the changing of the TCP/IP in advance option, the enabling the APN setting. And the last option the guide me was the "security wipe". I did make the back up of my data. After all the instruction followed, I still encounter the problem. More worst, I tried to download the google application again after the "security wipe" the goolgle said my phone number was invalid.
    I still cant figure out what happen with my phone. At first I got the phone, I was really excited and impress with blackberry. After this things happen, I am quite disappointed. Is there anyone out there that could help me?  I love my blackberry..
    regards,
    latifnoh
    Solved!
    Go to Solution.

    Hi there, I solved my problem. It it is not about the connection of the browser, its about the setting of the blackberry, the OS maybe. I called several time (my carrier DiGi) and the solution wasnt there either. so the I thing  it must be my BB is the problem, then I send it back for the warranty service and they "re-format the OS".
    I just got mine back yesterday, and everythings turn back to normal. Everything inside seems a new, like a new BB haha..thank God.
    hope it help!! HAPPY!!

Maybe you are looking for

  • Field Header issue while integrating BO on Bex query

    Hi All I have a integration problem of BO on Bex query.Wondering anyone had a similar problem before. I have a report which has Grant Description, Grant Key and some measures in the report layout. The report also has some additional available fields

  • SSRS 2008 FIPS error

    Hello, We've installed SQL Server 2008 and Reporting Services 2008 on a Windows Server 2008 Enterprise box. I could initially access the Report Server at the default URL, but when I attempted to access the Report Manager, I got a 500 Internal Server

  • Error In Depreciation Run in the period 08  the following is the error

    Dear all While executing the Deperciation run in the bacground in the period 8 system througing a error message that the Object ORD 600020 has system status CRTD (Created).  According to this status, transaction 'FI: Postings' is not allowed. how do

  • How do I move photos that I've already imported?

    I've imported some photos to the wrong folder.  I could use IOS Finder to move the photos, but I worry that the links to LR will be loss.  How do I move photos within LR? Thanks,

  • Repeated Crashes in Photoshop CS4

    Brand new iMac 27" with clean install of all Apps. CS4 seems incredibly unstable with large files even on new hardware with latest SL install. This machine has 16GB of RAM in it. Designers are often working on 2GB+ files. Below is the crash log. Anyo