Skillbuilders modal from chart link

I'm at a loss as to how to call the skillbuilders modal from a chart link (click on point in series). I'm able to call a classic report residing in another page but I can't figure out how to get it to appear in a modal. I created examples on apex.oracle.com.
http://apex.oracle.com/pls/apex/f?p=32787
user: admin
pwd: demo
The chart in column 1 has the working link that opens a classic report in another page. The chart in column 2 is the one I want to open in a modal.
Any guidance on how to do this would be appreciated.
--Rob
Edited by: user5745679 on Jul 17, 2012 10:33 AM

Sorry about that Dan. The user I provided has developer rights, but i passed along the wrong link. I think the follow is what you need?
http://apex.oracle.com/pls/apex/f?p=4550:1:1540681862471801:::::
workspace: brospace
user: admin
pwd: demo
application: 32787 - chart drill down-modal
Page 1 has 2 charts. The chart in column 1 is working fine with a link to a report in another page. Chart2 in column 2 is the one I would like to have the report loaded in a modal rather than moving away to another page.
Again, apologies and much appreciation for the help. Clearly I'm showing that I'm an end-user trying to evaluate the ability for my kind to develop basic applications.
--Rob                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • SkillBuilders Modal With Chart

    Using Apex 4.2
    I am trying to open an interactive report in a modal window by clicking a bar in a chart.
    I am trying to use the Skill Builders plugin, but not getting very far.
    Has anybody got an example of how to do this
    Thanks in advance
    Gus

    Gus,
    If you do the following with the link portion of the query, you'll see that you can execute JavaScript:
    select 'javascript:alert("hi")' link, ...
    What I would probably do is call a custom function to which I would pass the URL that you want to open:
    select 'javascript:myFunction("apex-url-here")' link, ...
    Then I would use the function to take the URL and make it an attribute of some element in the page. Then, trigger the click event on the element and let the plug-in take over from there.
    If you nee more help please set up an example on apex.oracle.com. Get as far as you can and then put some developer credentials here that we can us to help.
    Regards,
    Dan
    blog: http://DanielMcghan.us/
    work: http://SkillBuilders.com/APEX/

  • Open Skillbuilders modal page from report

    I want to open the Skillbuilders modal page from within a report. The first column in a report represents the primary key of the table the report shows. What is the best way to do that?
    The idea is this: in the report region, there's a button CREATE that opens the modal dialog by Skillbuilders. A user can enter some data, clicks submit, modal dialog closes and report is refreshed. That's working now. Now I want to add a link to the first column in the report, that also opens the modal dialog, passing the value of the primary key of the row the user clicks on.
    I'm not that experienced with Javascript, I guess I'll have to create an dynamic action with a jquery selector, and as a true action, a javascript call to open the dialog. Can someone give me a start?
    Thanks in advance!

    You actually do not need that much javascript in this case. Simply design your column as you would normally do to create a link column.
    <ul>
    <li>Column Link: Provide a link text</li>
    <li>Link Attributes: onclick="return false;" class="show_modal"</li>
    <li>Set the target page and provide any items you want filled.</li>
    </ul>
    onclick="return false;" is to prevent the default behaviour of the anchor tag: navigate to the location specified in the href attribute. We want to open the modal page instead.
    Now to have the modal dialog open, create a dynamic action.
    <ul>
    <li>Event: Click</li>
    <li>Selection Type: jQuery Selector</li>
    <li>jQuery Selector: .show_modal</li>
    <li>Advanced > Event Scope: live (so the links will work after pagination)</li>
    </ul>
    For the true action, select the SkillBuilders Modal Page plugin, and make sure these are specified as following. This will take the location in the generated link columns and open a modal page for this location.
    So, this would open your edit page with the correct id (which you set up in the column link).
    </ul>
    <li>URL Location: Attribute of Triggering Element</li>
    <li>Attribute Name: href</li>
    </ul>
    If you set it up like this, you have the convenience of the standard column link definitions, no need for any javascript save onclick=false and no need to fill up page items and deal with submission to session state.

  • 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...

  • Launching Skillbuilders Modal Page from Interactive Report

    Hello,
    Can anyone tell me how to launch a Skillbuilders Modal Page from an Interactive Report?
    Thanks in advance,
    Johnny

    I can't imagine why it would be any different for an IR over a classic report - have you tried watching the webinar?
    skillbuilders.com/oracle-apex/Application-Express-APEX-Consulting-Training.cfm?tab=plug-ins
    It answered all my questions when I was first attempting to use it.

  • Skillbuilders Modal plugin onclick attribute gets removed

    Hi,
    Apex 4.2.0.00.27, IE8, Firefox 17.0
    I am trying to use the Skillbuilders Modal plugin with a classic report. I followed the instructions and in the link column put the following in the link attributes:
    onclick="return false;" class="edit-link"
    When I click the classic report 'edit' link the new page opens full size instead of in a modal window (it works correctly from a separate button). Examination of the page in Firebug suggests that the 'onclick="return false;" attribute is being removed.
    Page Source excerpt:
    &lt;tr class=&quot;highlight-row&quot;&gt;&lt;td headers=&quot;ID&quot; class=&quot;data&quot;&gt;&lt;a href=&quot;f?p=1:52015:15766172029982::NO::P52015_ID:1&quot; onclick=&quot;return false;&quot; class=&quot;edit-link&quot;&gt;&lt;img src=&quot;/icas/edit.gif&quot; alt=&quot;&quot;&gt;&lt;/a&gt;&lt;/td&gt;&lt;td headers=&quot;ADO_ASA_ID&quot; class=&quot;data&quot;&gt;1&lt;/td&gt;&lt;td headers=&quot;EXT_BOD_ID&quot; class=&quot;data&quot;&gt;1&lt;/td&gt;&lt;td headers=&quot;DATE_CREATED&quot; class=&quot;data&quot;&gt;29-May-2013&lt;/td&gt;&lt;td headers=&quot;USER_CREATED&quot; class=&quot;data&quot;&gt;SC&lt;/td&gt;&lt;td headers=&quot;EMPLOYEE_ID&quot; class=&quot;data&quot;&gt;1&lt;/td&gt;&lt;td headers=&quot;DISCUSSION&quot; class=&quot;data&quot;&gt;test&lt;/td&gt;&lt;td headers=&quot;CONTACT_DATE&quot; class=&quot;data&quot;&gt;29-May-2013&lt;/td&gt;&lt;/tr&gt;
    Firebug excerpt:
    &lt;a class=&quot;edit-link&quot; href=&quot;f?p=1:52015:15766172029982::NO::P52015_ID:1&quot;&gt;
    I tried create do a simple version to upload, but as is always the way, that one worked fine.
    Can anyone suggest why the onclick="return false" bit might be getting dropped?
    Thanks,
    Nick.

    Further info - the page in question has a Form and a Report region. The modal window opens correctly if I remove the page process for updating the form (the standard 'Process Row...'). Setting a condition of 'Never' has no effect, the mere prescence of this page process is enough to break it.
    Does anyone know if Apex 5.0 will have a simpler Modal functionality, or will it be based on this plugin? In other words, should I persevere with it or wait for the new version.
    Apologies for the useless code extract above - it looked fine when I posted this on the old forum but the new 'improved' one can't seem to cope with it.
    Nick.

  • 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.

  • 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

  • Urgent!! Skillbuilders modal page

    Hi,
    This is urgent!
    Does anyone know how to correctly call the following modal plugin from report column link - just like what the demo shows? I was able to import the plugin into my application but was not able to make it work correctly. I created the dynamic action in the page as the following:
    http://apex.oracle.com/pls/apex/f?p=46685:MODAL_PAGE:0:::::
    Event: Click
    Selection Type: jQuery Selector
    jQuery Selector: .flash-modal
    Under True Actions:
    Action: Skillbuilders Modal Page (2.0.0) [Plug-in]
    URL Location: Statically Defined
    Static URL: f?p=&APP_ID.:1:&APP_SESSION.:::1:::
    Auto-close On Element Selector: div#success-message
    Dialog Height/Width Mode: Static by pixels
    The report column link is defined as this: (I replaced all < by ( and > by ) so that it would show the actual link)
    select
    , '(a class="flash-modal" href="#")Open Page(/a)' end as OPEN_PAGE
    from ...
    Thanks.
    Andy

    Dan,
    I just reproduced the plugin in apex.oracle.com. You may click on the 'John' link to see the modal. Was it because the way I defined it in the link? I used '(a id="flash-modal" onclick="return false;" href="f?p=&APP_ID.:1:&APP_SESSION.:::1:::")' || "DEMO_CUSTOMERS"."CUST_FIRST_NAME" || '(/a)' as the link. In the plugin settings, I defined 'flash-modal' as a DOM object and 'href' as attribute name.
    http://apex.oracle.com/pls/apex/f?p=62488:2:0:::::
    Thanks.
    Andy

  • Skillbuilders Modal Page (2.0.0) - Scroll bar issue

    Hi,
    I am using this plugin and I am having an issue.
    My requirement is to open a page from a link. I am able to do the same but I want the pop to be of specific width and height with scroll bar for height but not for width.
    Is there any way to do the same?
    As of now I can see that we can either turn both scroll bars on or both off.
    Please suggest that how can the same be achieved.
    Thanks in advance,
    Abhishek

    Abhishek,
    It's true, the one option controls both horizontal and vertical scrolling. This is due to the fact that the underlying plug-in uses one option for both.
    Have you tried just constraining the width of your modal page so that it's not as wide?
    As always, putting an example on apex.oracle.com and providing developer credentials would be helpful in helping you.
    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

  • 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 (2.0.0) - iframe height restricted to 150px?

    Hi,
    I installed the Skillbuilders Modal Page v 2.0.0 this afternoon into our Apex 4.1.1 instance and have most functions working as expected. I have the modal window popping up when a link column in an interactive report is clicked.
    However, iframe node is inheriting a height of 150px from somewhere and I'm struggling to see where this is.
    When the edit link is clicked, the modal window pops up and the dom looks like this:
    <div id="colorbox" class="" style="padding-bottom: 0px; padding-right: 0px; opacity: 1; cursor: auto; display: block; position: absolute; width: 400px; height: 500px; top: 0px; left: 752px; ">
      <div id="cboxWrapper" style="width: 400px; height: 500px; "><div>
      <div id="cboxTopLeft" style="float: left; "></div>
      <div id="cboxTopCenter" style="float: left; width: 400px; "></div>
      <div id="cboxTopRight" style="float: left; "></div>
    </div>
    <div style="clear: left; ">
      <div id="cboxMiddleLeft" style="float: left; height: 500px; "></div>
      <div id="cboxContent" style="float: left; width: 400px; height: 500px; ">
        <div id="cboxLoadedContent" style="overflow-x: hidden; overflow-y: hidden; width: 400px; height: 500px; ">
          <iframe frameborder="0" name="cbox1335796646985" src="f?p=139:35:1611420862962401::NO::P35_rowid:AAER2oAAuAAJIP%2BAAJ" scrolling="no" class="cboxIframe"></iframe>
        </div>
        <div id="cboxLoadingOverlay" style="float: left; display: none; "></div>
        <div id="cboxLoadingGraphic" style="float: left; display: none; "></div>
        <div id="cboxTitle" style="float: left; display: block; ">Edit Transaction</div>
        <div id="cboxCurrent" style="float: left; display: none; "></div>
        <div id="cboxNext" style="float: left; display: none; "></div>
        <div id="cboxPrevious" style="float: left; display: none; "></div>
        <div id="cboxSlideshow" style="float: left; display: none; "></div>
        <div id="cboxClose" style="float: left; ">close</div>
      </div>
      <div id="cboxMiddleRight" style="float: left; height: 500px; "></div>
    </div>
    <div style="clear: left; ">
      <div id="cboxBottomLeft" style="float: left; "></div>
      <div id="cboxBottomCenter" style="float: left; width: 400px; "></div>
      <div id="cboxBottomRight" style="float: left; "></div>
    </div>I've combed through the source and linked CSS/JS files to try and see where the 150px height is inherited from to no avail. What is strange is that in my dynamic action I specify the height to be 300px, and the initial height in the plugin setup is also 300px.
    Anyone with any suggestions would be most welcome - I've hit a brick wall on this particular one!
    EDIT: Sample application and demo of problem at Demo App (user DEMO, password demo)
    Many thanks in advance.
    Regards, Pete
    Edited by: Pete Mahon on Apr 30, 2012 4:17 PM

    Hi Johnny,
    There isn't actually any custom code behind this, so to speak, certainly none that I've written as a custom job.
    The Skillbuilders plugin is available via [url http://apex-plugin.com/oracle-apex-plugins/dynamic-action-plugin/skillbuilders-modal-page_138.html]apex-plugin.com which links to [url http://skillbuilders.com/download/download-resource.cfm/instructions.pdf?file=Oracle-Apex/plugins/modal_page//instructions.pdf]instructions and a [url http://skillbuilders.com/webinars/webinar.cfm/53?title=Introducing%20SkillBuilders%20Modal%20Page%20Plug-in]really informative webinar at skillbuilders.com. I strongly recommend you watch the video as it's not as simple as just installing.
    Cheers, Pete

  • Skillbuilders modal Popup loading issue??

    Hi All,
    I have implemented skillbuilders modal plugin in my Application.We have some six different region in the home page.Each region is having a create and edit button.
    In the report region,when i click edit icon against each record and modify some values and click apply changes,changes are getting reflected in the home page.When am trying to click the same record,popup is loading continuosly for 4 -5 mins,not opening the form,then i close the popup and refresh the page,again i clicked on the same record which i modified recently ,its opening quickly.
    If anyone faced the same issue ,please post your comment like how you resolved that issue!!
    It will be very helpful for me.
    Many thanks
    Ramya

    Hi Dan,
    Thank you very much for the response.
    I have created a sample demo in apex.oracle.com.
    Please find the link below
    http://apex.oracle.com/pls/apex/f?p=4000:1500:2180107774088701:::::
    Workspace name - newrmo
    username/pwd - DAN/abc123
    DEMO APPLICATION - 66096
    Please check the report region in page 27.
    Try to create a record in that report region and also try to edit the report and click on the show icon to view the record details.
    Thanks,
    -Ramya.

  • Skillbuilders modal plugin performance

    Hi all,
    I would like to seek people's thoughts regarding page rendering performance when a large number of plug-ins are included on a page in APEX 4.2 with HTTP server.
    Consider a hypothetical scenario where 12 instances of the Skillbuilders Modal Page plugin were defined for one page - various buttons that invoke their own DA.
    This is consuming a large amount of rendering time according to the APEX debug report - each call to apex_modal_page_render adds up, and I'm considering my options.
    a) Tune the plug-in code
    I'm not sure how far we can go with this, I'm not sure where exactly the time is being taken - it's only fractional amounts adding up - including various conditions
    (I'm disenchanted with APEX debugger reporting 0.047 for many entries...)
    b) Add more juice.
    but where? DB, application server, local pc with browser?
    c) Consolidate the dynamic actions.
    Each button has it's own dynamic action, with statically defined URL.
    This was done because when we were first attempting to use plugin, this worked when the href attribute option did not. We should be able to work around this now.
    I was wondering if anyone had anything to add? I'm trying to shave time off all aspects of the page render, there is no major bottleneck.
    Cheers,
    Scott

    Thanks Dan.
    I've sourced all my plugin supporting files direct from the fileserver instead of the database.
    I have found some more conditional checks in between all the plugin definitions that I didn't spot before.
    It seems I need to take greater care between using
    :ITEM = 'VALUE'
    vs
    Expr1:ITEM
    Expr2:VALUE
    I've consider this before but never really had a chance to quantify it
    http://tonyandrews.blogspot.com.au/2013/04/apex-conditions-and-performance.html
    Scott

Maybe you are looking for

  • Thai characters not displaying correctly within App

    Hi everyone, I have a Adobe Flex Mobile app displays Thai text, however this is not displaying correctly. While developing the App on my Windows machine and testing using the Adobe Flash Builder mobile emulator, the font/characters look correct. Howe

  • Error importing support pack SAPKH60011 (SAP_APPL)

    Dear All,    I am faceing one error when applying support pack SAPKH60011 can not apply showing error " The import was stopped since an error occurred during tha phase IMPORT _PROPER ....". for details i here attached screenshot . Pls. reply , Thanks

  • Disable trace event

    Hi, I have enable a trace and now i want to disable this event trace. How can i do this?? The command that i use to enable is the following: alter system set events '1349 trace name context forever, level 7' Tks, Paulo.

  • Optical Drive Rejecting Everything

    My optical drive was working perfectly well yesterday. Put in a movie, watched it, ejected it, no problem. Today, no matter what DVD I put in, the computer tries to read the disc for about ten seconds, then ejects it. The DVD Player Icon does not com

  • AA Multilevel method

    How should the below be setup in multilevel method for depreciation key Asset ABC cost $5000 with 3 years useful life. Year 1 = (5000 x 20%) + (5000 x 80%)/3 years Year 2 = (5000 x 80%)/3 years Year 3 = (5000 x 80%)/3 years In plain words, in the fir