Help with Skillbuilders Modal Page plug-in

Hi,
I'm an APEX 4.1 user and a novice. I'm trying to use the Skillbuilders Modal Page plug-in. I have a report with an item (Order Number) that I use to drilldown. When the user clicks on the order number link to drilldown, it goes to another page/report that displays the detailed rows for that order (read only). That all works fine. What I'm attempting to do now is display the detail report in a modal page. Similar to the "Modal Page Demo 1" [url http://apex.oracle.com/pls/apex/f?p=46685:MODAL_PAGE:0]here. I watched the [url http://skillbuilders.com/webinars/webinar.cfm/53?title=Introducing%20SkillBuilders%20Modal%20Page%20Plug-in]Skillbuilders webinar twice. The webinar was showing how to display a form in the modal page, but I figured the steps were the same for displaying a report so I followed the steps Dan did for creating a modal page from a link.
Here's what I did:
I inserted: onclick="return false;" class="order-number" in the Link Attributes for the Column Link (drilldown) on my Order Number column.
I then created a Dynamic Action:
Event = Click
Selection Type = jQuery Selector
jQuery Selector = .order-number (I also tried 'a.order-number'. In the webinar it looked like there was an 'a' there.)
no condition
Action = Skillbuilders Modal….
Fire When Event Result Is = True
URL Location = Attribute of Triggering Element
Attribute Name = href
Event Scope = live
The modal page displays when I click on the Order Number link, but only the bottom and right side (with scroll bars) and that's it. There is no detail displayed. Also, the background isn't darkened with the modal page prominent (as demonstrated in the webinar).
Unfortunately my app is not on apex.oracle.com, so I have no link to share. Can anyone please help? I'm at a standstill. If this isn't enough information, I am more than happy to provide whatever else is needed. I can also provide links to screen shots if that will help.
Thanks
David

Hi,
Did you try to change the Theme in the PLUGIN Settings ?
I had the same problem when the Theme of the Plugin was set to Custom. (it is initially set to CUSTOM)
Try to change some to 1 - 5 of them.
Regards
J :D

Similar Messages

  • More help with Skillbuilders' Modal Page Plugin

    I have an employee page with a series of smaller report regions showing things like contact addresses, job roles, etc. All are form-on-a-table+report type of setup I would like to convert to modal pages. The popup is now working (thanks to a security setting pointed out by Dan), but on all of these forms, I would like to populate the P(X)_EMP_ID item from the parent to save the users an obvious step. I've tried putting it in the URL called by the Dynamic Action and I've tried setting the item value in the modal dialog to be the parent's correlated item, but neither seems to work like it would in a standard form page call where I just list the items to pass and their values. I must be doing something wrong here, but I can't quite place it. Can someone point me at what I'm missing?
    Here's the URL I'm trying to use:
    f?p=&APP_ID.:287:&APP_SESSION.:::287::P287_EMP_ID:&P281_EMP_ID.
    where 281 is the parent page and 287 is the modal page.
    I also tried setting up an additional TRUE action associated with the Dynamic Action to assign the page item value - that didn't seem to work either. BTW - I'm strictly dealing with the CREATE button ATM. I'll get to the edit links after I get this working.

    Does your page 281 have an employee id item?
    Yes. The respective items are P281_EMP_ID and P287_EMP_ID. There is also P282_EMP_ID, P283_EMP_ID, etc.
    Even if it did it wouldn't make sense to transfer it's value to your form page if you wanted to arrive at the form page in a create mode.
    In this case it does, however. I start out on a general listing (Interactive Report) of all the employees where each has an edit link to the "master" record for the employee containing employee ID, name, etc. There are several (5+) child tables to the master, however, which contain things like addresses, contacts, etc. Each has a one-to-many relationship with the employee master record. I am attempting to display these each in their own regions and this was working fine as standard form+report on a table with the report showing along with the master employee record.
    As such, though the Employee ID acts as the foreign key to the master record, that value is predetermined by virtue of the currently displayed employee master record - thus the desire to have this value propagate down to the modal window/form page. The users also want it because they get distracted and frequently forget who they are working on. They want the name of the employee listed here, and this is difficult to display without the ID to reference.
    To arrive at page 287 in a create mode you need to clear out the value of the primary key item on that page. See the following to learn more about URL syntax:
    http://docs.oracle.com/cd/E2390301/doc/doc.41/e21674/concept_url.htm#BEIFCDGF_
    Thanks. I looked that over and tried to make sure things were in the right place, but I'm pretty sure the issue is the automatic fetch. Once I wrote my own form population process to replace the existing one, it seemed to work fine and the URL syntax passed the value as desired.

  • I've problems with skillbuilders Modal Page (2.0.0) plugin

    Hi,
    I'm a newbie on Apex. I'm creating an application with APEX 4.2.1 using the plugin Skillbuilders modal page 2.0 to create/edit the form,
    but after I submitted all the information on page2, I'm not able to come back to page1 and also it doesn't appear the message
    "Action Processed."
    Could you tell me why doesn't work or checking my demo application on apex.oracle.com (http://apex.oracle.com/pls/apex/f?p=58394:1).
    The credentials are:
    workspace: draccanelli
    username: [email protected]
    pwd: draccanell1
    Application: DR - Modal
    ID: 58394
    These are the steps I made:
    a) install plugin
    b) change security from ...
    c) create TEST application (DR - Modal) doing these steps:
    Theme used for the application demo: theme 25
    Page1:
    c.1) change some attributes of create button
    Static ID: create-btn
    Action: defined by DA
    c.2) create DA "create": event:click
    selection type: jquery
    jquery selector: #create_btn
    Action: skillbuilders Modal Page (2.0.0)
    URL Location: statically defined
    static URL: f?p=&APP_ID....
    Auto Close on Element: div#success-message
    c.3) change some attributes for report "report"
    Link Attributes: onclick="return false;" class="edit-link"
    c.4) create DA "Edit Modal": event:click
    selection type: jquery
    jquery selector: .edit-link
    Action: skillbuilders Modal Page (2.0.0)
    URL Location: attribute of triggering element
    static URL: href
    Auto Close on Element: div#success-message
    c.5) create DA "Modal Page auto close": event: Auto Close (skillbuilders 2.0.0)
    selection Type: DOM Object
    DOM Object: document
    Action: Refresh
    add another action:
    event: Auto Close (skillbuilders 2.0.0)
    action: execute JavaScript Code
    Code:
    $('#messages')
    .hide()
    .empty()
    .append(this.data.$modalPageCloseObject)
    .slideDown('slow');
    Page2:
    d.1) change template: Popup
    d.2) change branches to the page 102
    Page 102 (Close Modal)
    e.1) create page with no item
    Thanks in advance...
    Davide

    Your auto-close selector is wrong. You probably copied over the default values, and those do not work on theme 25. The template for your popup page is "Popup".
    Looking at the success message subtemplate for the Popup page template:
    <div class="apex_grid_container">
      <div class="apex_cols apex_span_12">
        <section class="uMessageRegion successMessage clearfix" id="uSuccessMessage">
          <div class="uRegionContent clearfix">
            <a href="javascript:void(0)" onclick="apex.jQuery('#uSuccessMessage').remove();" class="uCloseMessage"><span class="visuallyhidden">#CLOSE_NOTIFICATION#</span></a>
            <img src="#IMAGE_PREFIX#f_spacer.gif" class="uCheckmarkIcon" alt="" />
            <div class="uMessageText">
              <h2 class="visuallyhidden">#SUCCESS_MESSAGE_HEADING#</h2>
              #SUCCESS_MESSAGE#
            </div>
          </div>
        </section>
      </div>
    </div>Your auto close selector would be
    section#uSuccessMessageDon't use .apex_grid_container and also not .apex_cols apex_span_12
    These are classes also used for the body and are not reserved to only the success message.
    However, your auto close action will not work too. Again, you probably copied over the default values, but it won't match with the page template. There is no #messages container to append to. Again, look at the page template for page 1, success message subtemplate, which is the same code as above.
    Not home yet. Since the auto-close selector will only fetch the success message section tag, we can't just insert that in the parent page if there is no div container for it yet. First test for the existance of a success message region, and if not, add the containers. Note that this is very template specific!
    Looking at the page template body code:
    <div id="uBodyContainer">
    #REGION_POSITION_01#
    #SUCCESS_MESSAGE##NOTIFICATION_MESSAGE##GLOBAL_NOTIFICATION#
    <div id="uOneCol">
      <div class="apex_grid_container">
        <div class="apex_cols apex_span_12">
          #BOX_BODY#
        </div>
      </div>
    </div>
    </div>The success message can be inserted before div#uOneCol.
    Annoyingly, notice the onclick code of the uCloseMessage link. This will not be copied over, meaning that the success message will be there, looking pretty. Very annoying. So we'll bind for that.
    This will go into the auto close execute javascript:
    if($('section#uSuccessMessage').length){
       $('section#uSuccessMessage').parent().html(this.data.$modalPageCloseObject)
    }else{
       var newContainer = $('<div class="apex_grid_container"><div class="apex_cols apex_span_12"></div></div>');
       newContainer.find('div.apex_cols').html(this.data.$modalPageCloseObject)
       $('div#uOneCol').before(newContainer);
       $('a.uCloseMessage').click(function(){$(#'uSuccessMessage').remove();});
    };In the end, i only had to adjust the auto close selector and the auto close javascript code.
    Edited by: Tom on Dec 19, 2012 9:51 AM: forum ate my code but my CTRL+C skills nailed it.

  • SkillBuilders Modal Page not opening when click edit link in a Manual Tabul

    Hello,
    This thread is related to a recent thread I created (Column Link is not working on a Manual Tabular Form I am using Apex 4.1.1.00.27, Oracle DB 10.2.0.5.0.
    In summary, I have a collection that retrieves the information from the EMP table, a manual tabular form based on that collection, and a link in the DEPTNO field that branch to another page with a Form based on the DEPT table.
    What I want to accomplish is to call the DEPT Form as a modal page that opens from my EMP Page.
    What I did so far:
    1. DEPT Page uses the popup template and branch to itself.
    2. The Link Attribute of the Link Column (DEPTNO) is set to: onclick= *"return false;"*
    3. I created a DA using jQuery Selector: *td[headers="LINK"] a*. Action: SkillBuilders Modal Page plug-in. URL Location: Attribute of Triggering Element. Attribute Name: href. Event Scope: live (Dynamic in Apex 4.2).
    4. Changed the Application Security to Allow Embed in Frames.
    My problem is that when I click the DEPTNO column, is it not opening the Modal Page.
    I created an example on apex.oracle.com in case some of you want to look into it:
    Workspace: EDIAZJORGE
    Username: test
    Password: test123
    App Name: Sample App
    App Number: 12231
    I appreciate any help.
    Thank you,
    Erick

    You were using a wrong jQuery selector. There are no columns with headers "LINK". Evidently, you want the modal to open through clicking the icon in the "DEPTNO" column, so all that is required is to change the selector to
    td[headers="DEPTNO"] aYou can always easily test your selectors when you use a tool like Firebug. Simply run the selector in the console, and it'll show you all selected object. In your case, executing $('td[headers="LINK"] a') showed nothing. Dropping "a" still gave nothing. At that point i was pretty sure there were no columns with such a header...

  • SkillBuilders Modal Page is not working in Apex 4.2

    Hi All,
    I am trying to set up an example in apex.oracle.com of an application developed in Apex 4.1 and the SkillBuilders Modal Page plug-in is not working.
    To show this situation, I created a simplified version of the application, with only two pages, in apex.oracle.com.
    Workspace: EDIAZJORGE
    Username: TEST
    Password: test123
    Application: 66464 - Modal Page Sample
    When Page 3 loads, a Dynamic Action is executed to open Page 2 (Interactive Report) as a modal page, but it is not working (the modal page does not open).
    Please notice that this is working in Apex 4.1, and the Embed in Frames property in my application is set to Allow.
    I appreciate any help.
    Thanks,
    Erick
    Edited by: ediazjorge on Jan 30, 2013 3:20 PM
    Bump!

    Erick,
    This is due to a change that was made to the Dynamic Actions framework in 4.2. The workaround for now is to change your event to resource load on the DOM window object.
    It's working now. In the next release of the plug-in you'll be able to go back to the Page Load (ready) event.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • SkillBuilders Modal Page (2.0.0) in APEX 4.0.2.00.07 Help

    version 4.0.2.00.07
    Hello,
    I'm trying to use the SkillBuilders Modal Page (2.0.0) in APEX 4.0.2.00.07.
    I have a link set up in a query:
    SELECT
          ,CASE WHEN ft.feature_id IN (SELECT cc.feature_id
                                       FROM customer_commitments cc
                                       WHERE ft.feature_id = cc.feature_id
                                      ) THEN DECODE(:REQUEST, 'CSV', 'Yes', '<a class=feature_commitments *href*=f?p=&APP_ID.:81:&SESSION.::NO::P81_FEAT_NUM_DESC_SRCH:'||ft.feature_id||'><font color="blue"><u>Yes</u></font></a>')
                                        ELSE 'No'
           END "Commitment_Exists"
    FROM feature ft
    ....The receiving page, 81, contains an Interactive Report with the Page Template set to "Popup".
    The calling page, 80, has a Dynamic Action:
    When -> Event: Click
    When -> Selection Type: jQuery Selector -> a.feature_commitments
    When -> Condition: No Condition
    In the TRUE Actions section:
    Identification -> Action -> SkillBuilders Modal Page (2.0.0) [Plug-In]
    Execution Options -> Fire When Event Result Is -> True
    Settings -> URL Location -> Attribute of Triggering Element
    Settings -> Attribute Name -> href
    Settings -> Auto-close On Element Selector -> div#success-message
    Settings -> Dialog Height/Width Mode -> Auto
    Settings -> Modal Page ID -> NULL
    When I click the link for the "Commitment Exists" on the report the modal window does not display. The report on page 81 displays like a normal link would branch to.
    Can someone help me with getting this plug-in set up?
    Thanks,
    Joe

    Dan,
    I've created an application on oracle.com.
    Workspace: joer
    Username: dev
    Password: dev1
    Application ID: 64061
    Page 2 contains 2 records. One record is set with a value of 'Yes' and is a hyperlink to go to page 3 which is the pop-up.
    When I tested I received an error in the modal that "Content cannot be displayed".
    The hyperlink is embedded in the SQL for the report on page 2.
    I left all the values of the plug-in set to their defaults.
    I hope I've provided everything.
    Please let me know if I haven't.
    Thanks,
    Joe

  • Skillbuilders Modal Page on IE8 with an IE6 compatible Apex theme

    Hi,
    We have been using Theme 13 for quite some time now - I'm aware it's not the best theme in the world to use but with the number of application pages we have now it will take a long time to upgrade them to a newer theme.
    Recently we implemented the Skillbuilders modal page with more than a little help from Dan McGhan and it looks amazing, using any Apex theme, when using IE9, Chrome, Firefox etc. For some reason, when using IE8, we are experiencing strange behaviour.
    The modal box is not showing the Close button and the right and bottom sides are hidden from view inside a parent div. This is a known issue with the jquery ui dialog, but I was hoping someone might have come up with a workaround to make it show correctly.
    If you visit [url http://apex.oracle.com/pls/apex/f?p=62488:2:0:::::]this example with IE8 and click on the names, it doesn't display correctly.
    Can anyone help? We know switching themes to a non-IE6 compatible one works but I would like to fix this without changing stuff to that extent.
    Any help would be greatly appreciated.
    Kind Regards, Pete

    Pete,
    The page templates for the main page and the modal page are missing DTDs so the browser is running in quirks mode. Try adding the HTML5 DTD as it's the simplest:
    <!DOCTYPE html>Note that this may cause other parts of the template to "break". These can be fixed but depending on the severity it may cost a lot of time to fix.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Skillbuilders Modal Page Plugin - Help in setting Modal window height/width

    Hello Apex Experts,
    I have downloaded the Skillbuilders Modal Page Plugin. I have tried to implement the same but my modal window is not showing correctly. I can see all the fields and scroll bar. I also tried to set the initial height/width settings but no luck.
    Can anyone help me?
    Your help would be appreciated.
    FYI: I'm using Apex v4.2 on Google Chrome.
    Many Thanks,
    Bhavin

    Bhavin,
    Go into the setting in the Shared Components for the plug-in and change the theme from custom to a number (1-5). Also, make sure to read this:
    http://www.danielmcghan.us/2011/08/new-browser-security-attributes-in-apex.html
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Problems with Apex4.2, SkillBuilders Modal Page plugin, IE9 and HTML5 theme

    Hello everyone.
    Please Help.
    Again problems with Apex4.2, SkillBuilders Modal Page plugin, IE9 and HTML5 theme (Blue Respensive).
    1. The problem is that all the popup windows display 100% of the width
    2. After opens a popup window change the width of the parent window forms.
    This happens only in IE9 browser.
    In other browsers, the popup window only much larger than the form that is opened.
    I can not change the size of the window.
    Thanks.

    Milk,
    I changed the component level settings to use a fixed height and width (I adjusted edit, you still need to adjust create). You can try adjusting this some because the modal page should adjust a bit.
    Then I added this CSS to the Inline CSS of the modal page:
    section.uMessageRegion{position: static; !important;}
    Let me know how this works for you.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • The SkillBuilders Modal Page.. Help me please

    I'm new about ORACLE APEX and i wanna use a plugin in my little application but I can't. The Plugin is SkillBuilders Modal Page.
    If there is someone who that know using of The SkillBuilders Modal Page please help me. I tried many times and many ways but always same result.
    Model page was open but always loading. No data no page. I want to do like this;
    http://apex.oracle.com/pls/apex/f?p=46685:MODAL_PAGE:0
    thanks for all.

    Hi,
    We had the same problem when using APEX 4.1. There are some new security enhancements included which stopped the Popup displaying the page.
    Here is how to fix it:
    Go to shared components then click on "Security Attributes" in the "Security" section.
    Then go down to a new section called "Browser Security"
    You then need to change the "Embed in Frames" to "Allow from Same Origin".
    This should then allow your popup to load correct.
    hope this helps
    Thanks
    Paul

  • Skillbuilders modal page help needed

    Hello,
    I have installed the Skillbuilders modal page plugin on my workspace. (APEX4.2)
    I did all the default steps:
    - simple interactive report with create button
    - dynamic action
    When I click on 'create' something pops up, but it's not something I want :)
    http://www.pictures.se/bilder/NLY8l.jpg
    Does anyone know what the problem is? Themes maybe?
    Edited by: garcol on Apr 4, 2013 12:15 PM

    Did you configure the plugin so that it has a specified theme? In 4.2 you can access the settings of the plugin through "Shared Components > user Interface > Component Settings", or when in the edit page of the plugin choose "Component Settings" from the "Tasks" list on the right.

  • APEX 4.2. - SkillBuilders Modal Page plugin not sizing fields or labels

    I recently migrated from 4.1 to 4.2, bringing over the Skillbuilders plugin 2.0.0. My page has a Popup template. When I open the page as a Skillbuilders Modal Page, all of the fields have the same width, ignoring the width I've given it with the label above the field, even though I said the label should be aligned left horizontally. If I run the page as itself (not called as a Skillbuilders popup), it properly spaces the fields and the labels are aligned to the left. Can someone help me fix this issue?
    Thank you!

    Johnny98,
    Yes, the plug-in has been known to have issues with the responsive theme. I recommend either changing your theme or avoiding the plug-in for now.
    I may be able to address this in the future, but I wouldn't bank on it.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Skillbuilders modal page plugin query

    Hi Guys,
    I have downloaded the Skillbuilders modal page plugin and it works very well for 99% of the scenarios that we have encountered.
    We have one page which needs a slight modification from the standard functionality with regards the modal plug in..
    We have a tabular form which has a field into which we have created our own button (which is used as a link to page 6) with the following syntax:
    *<input id="modal" type="button" value="comps" onclick="javascript:redirect('f?p=&APP_ID.:6:&SESSION.::NO::P6_JOB_RESP_ID,P6_RESPONSIBILITY_ID:#Comps#,#Responsibility#')" />*
    which calls another page within the application and passes in the #Comps# and #Responsibility# values from the current row in the tabular form.
    What I am trying to do is to use the modal page plugin within this tabular form functionality so that the new page (page 6) appears as a modal page.
    The part that is confusing me is how to pass the #Comps# and #Responsibility# values in the tabular form into the plug in as parameters so that the new page appears modal.
    If anyone else has experience using this plugin, any advice would be great.
    Chris
    Edited by: Cashy on 23-Feb-2012 01:22

    Hi Jieri,
    The problem is how you are generating the link. You're using substitution string syntax in the link to refer to an item's value. This will work only on page load. You need something more dynamic.
    For some reason I was able to log in yesterday but I was short on time. Today I tried and the login failed. Try to do this on your own...
    1. Create a hidden item on the page (not protected).
    2. Reconfigure the dynamic action to respond to the click event on that hidden item.
    3. Reconfigure the plug-in to grab the link using an attribute of the triggering element. The attribute can be something like "data-href".
    4. Reconfigure the button to so that clicking the button executes some JavaScript that does two things:
    a) Sets the data-href attribute of the hidden element to the correct value for the link
    b) Triggers the click event on the hidden element
    If you need more help from me on this please unlock that account. Also, I don't know when I'll be able to get to this so please be patient. You can always email me the password if you want to keep it private.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/
    twitter: https://twitter.com/dmcghan

  • Problem closing Skillbuilders modal page when using Login page 101

    Trying to setup website with the Login page opening in a modal window instead of normal Apex window.
    Have a Global Page (0) which has a Login button defined - that has a dynamic action defined on it
    Login Clicked
         True
              SkillBuilders Modal Page(2.0.0) [Plug-in]
    Fire When Event Result is True
    Dialog Title:  Login
    URL Location:  Statically Defined
    Static URL:  f?p=&APP_ID.:101:&APP_SESSION.:::1:::
    Auto-close On Element Selector:  div#success-message
    Created a branch page 102 called Close Modal
    Have tried putting the following javascripts into Page 102 and also without - but cannot get the modal window to close out.
    Dynamic Action on page 102  Close Modal Window - Event is On Page Load.  No condition set
    Execute Javascript Code
    Fire When Event Result is True
    Fire On Page Load - checked
    Code: 
    javascript:parent.$(parent.document).apex_modal_page('close');
    Any ideas which might help ?
    Thanks - Jonathan

    I can't say. I have not successfully tried this in any version of Apex (until just now).
    Ignore my suggestions regarding page 0 from earlier.
    If the user is on a page in your application and they have an invalid session, when they get that valid session in the login page how are you going to pass along that information to the parent/calling page? This just doesn't seem to be only about the authentication scheme.
    A simple test I set up right now has me at page 1. I click a button and I get the login page modal. I login and the modal window displays a logged in version of page 1.  But if I manually close that modal window and then refresh page 1 in the main parent window, I am still not logged in. A little further digging and I see it is in part due to the URL and the session id within.
    If my URL is http://apex.oracle.com/pls/apex/apex/f?p=18025:1 then this refresh will not work.
    If my URL is http://apex.oracle.com/pls/apex/apex/f?p=18025:1:123456 and 123456 is not a valid session then this refresh will not work.
    You'd need to follow Jorge's suggestion to use some javascript like top.location.href="&FSP_AFTER_LOGIN_URL." to set the parent window to use the correct url containing the session id.
    You would have to control when that code is placed on a page. I have a working example now at the above URL that uses a dynamic action on page 0.
    Event = Page Load
    Condition = Page != 101
    Action = Execute Javascript Code
    JS Code =
    if (window.location != window.parent.location)
      parent.location.href="&FSP_AFTER_LOGIN_URL."
    So if I am loading page 101 do nothing. If I am loading another page, check if the parent and iframe are different source locations (indicating this is an iframe because even a non-iframe window will have a value for parent.location) and if so then set the parent page location to that of the iframe. In effect the redirect that happens in the modal is transferred to the parent.
    This will break any other modal page instances you use though. But you could add them to the condition of the dynamic action on page 0 so you have something like "page not in 101, 1020, etc."
    It seems to work but it feels like a hack to me. Perhaps a specific template for the modal window with some version of this javascript would at least keep you from running this script on every page load.
    Greg

  • SkillBuilders Modal Page... closes immediately after loading

    I would like to use the Modal Page plug-in from http://www.skillbuilders.com .*
    I installed the two sample applications from their web site with different results:
    The employee example works fine.
    The example with the modal feedback worked fine yesterday, but today it shrinks (after loading normally) so that I can't see anything but the bar with the window name and the close button.
    In my own application it's even worse:
    I have links in a table which should open a modal window on click.
    I tried several settings, but the only thing that's happening is that the window closes immediately after loading and showing the page for a half a second (or not at all).
    Leaving the "Auto-close On Element Selector" empty did not work. The default value "div#success-message" kept coming back until I replaced it with "null". But still no effect.
    Does anyone have any idea what could cause this behaviour?
    Best regards,
    Sabine
    The Security Settings for all three applications:
    Cache: Enabled
    Embed in Frames: Allow

    In the meantime I had the problem that the window didn't close at all, but I think I figured it out.
    So if the Modal Plug In does not work properly, check the following:
    <li>Does every process that should close the window have a 'Success Message' defined?
    <li>In the unconditional branch, is "include process success message" checked?
    <li>In the dynamic action, is "Auto-close On Element Selector" set to "div.t1success" in the true action?
    BTW: The "shrinking problem" described in the first post still exists - in IE. In Firefox, it works fine.
    Best regards,
    Sabine

Maybe you are looking for

  • Out of memory error when calling a java stored procedure multiple times

    Trying to run a PL/SQL loop calling a java stored procedure, I get the following error: "ORA-04030: out of process memory when trying to allocate 262188 byte callheap,ioc_allocate free)" (with some other error lines). The stored procedure does two ma

  • Software updates cause network system prefs pane lockup

    Some problems today after Software Updates on eMac G4 running Tiger 10.4.11. The recent updates have been the all the latest IWork and iLife app updates, including QT 7.6, iTunes 8.2.1 and Security Update 2009-004. Whenever I try to get into the Netw

  • Wire Bound Books

    I want to produce a wire bound book from a book created in Aperture - is this possible. Aperture does not seem to offer wire bound books (why is that?) and i cannot find a way to import my aperture book into iphoto - i can import the photos but not t

  • Help me. WARNING: Your flash player is out ...

    I am using IPhone4 iOs 7.1, when open Safari and type in google.com "WARNING: Your flash player is out of date sewing friend. Please update to continue". I can not access google.com or facebook...

  • Converting a String to an Int????  (Java)

    I am reading in a value from the user as a string. But I need to use that value as an int value. Can you parse a string to an int? Or can someone tell me another way I should be doing this? Thanks