Spry Master Detail section not showing in IE after addObserver

So, I have this cool thing almost done and I get it close and then it goes blank in IE - FireFox is fine, Safari PC is blank, Chrome is blank too.
http://ryanmillsdesignstudio.com/MasterDetail.cfm
As soon as I add the addaobserver
<script type="text/javascript" language="javascript">
<!--
var dsPortfolio = new Spry.Data.XMLDataSet("Residential.xml", "gallery/album/img", {sortOnLoad: "@src", sortOrderOnLoad: "ascending"});
//-->
<!--
Spry.Data.Region.addObserver('items', {
     onPostUpdate : function(observer, region){
          // slider code
// execute your scripts when DOM is ready. this is a good habit
$(function() {       
    // initialize scrollable
    $("div.scrollable").scrollable();   
$(function() {
    /* execute this script block when page is ready to be scripted */
    // select items under the second scrollable and do something when they are clicked
    $("div.scrollable:eq(1) div.items div").click(function() {
        // perform the effect
        $(this).fadeOut().fadeIn();
// custom easing called "custom"
$.easing.custom = function (x, t, b, c, d) {
    var s = 1.70158;
    if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
    return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
// use the custom easing
$("div.scrollable").scrollable({easing: 'custom', speed: 700});
$(document).ready(function(){
$.ajax({
        type: "GET",
    url: "Residential.xml",
    dataType: "xml",
    success: function(xml) {
          //END scrollable
}); //END observer
</script>
nor can I get the spry detail region work when I click on the image to show the lager image up top.

No clue, as its something that your jQuery plugin does. Probably some CSS issue. I suggest you post that issue in the jQuery tools forum.
And a comment about your region observer, again, there are items function that do not need to be there, they are obsoleet and even duplicate.\
Spry.Data.Region.addObserver('items', {
     onPostUpdate : function(observer, region){
          // your slider code here
// execute your scripts when DOM is ready. this is a good habit
$(function() { // NOT NEEDED BECAUSE YOUR DOM IS READY WHEN THE OBSERVER FIRES
// initialize scrollable
     $("div.scrollable").scrollable();     
$(document).ready(function(){ // YOU ARE DOING A AJAX CALL, BUT YOU ARE DOING NOTHING WITH THE XML
$.ajax({
        type: "GET",
     url: "Residential.xml",
     dataType: "xml",
     success: function(xml) {
            //END scrollable
}); //END observer
I made all useless scripts red and bold, and added the reason in comments. Sorry about the caps, forgot that it was on

Similar Messages

  • How Do I: Bind a YUI Calendar Widget to a Spry Master Detail Region?

    Hello All,
    Does anyone know how to bind a YUI Calendar widget to a Spry
    master detail region? I have the dataset, yui calendar inserted but
    no clue how to bind the two so my dataset populates the calendar
    (Highlights dates that have a event) and when a date in the
    calendar is clicked it shows in the details section.
    I have found a tidbit or two via google but they don't deal
    with the new yui cs4
    widget. I have seen some video on adove tv that touches on
    inserting the yui calendar into a spry dataset but not how to bind
    the two together...
    Any thoughts on this would be greatly appreciated.

    You have to write some code that sets up a select callback on
    the YUI side of things, and then set the current row of the data
    set that matches that date.
    Something like this:
    var cal1 = new YAHOO.widget.Calendar("cal1","YUICal1");
    cal1.render();
    cal1.selectEvent.subscribe(function(type, args, obj)
    // Get the selected date string from cal1.
    var selectedDate = cal1.getSelectedDates()[0].getDate();
    // Find the first row in the data set that has the
    // selected date in it's "date" column.
    var row = ds1.findRowsWithColumnValues({"date":
    selectedDate}, true);
    // If we have a matching row, make it the current row for
    the data set.
    if (row)
    ds1.setCurrentRow(row.ds_RowID);
    }, cal, true);
    --== Kin ==--

  • Unrelated data in master detail sections of a custom BIP  report deployed in R12 EBS

    We have a custom Master Detail BIP report generated by calling XDO APIs from a custom Java concurrent program (common_report_attachment) . This Java concurrent program is called from another custom concurrent program (po_validation) that processes a batch of POs in a single concurrent request.
    PO_Validation Program (processes a batch of POs per request) -> Java Concurrent Program -> BI Publisher Report APIs
    BIP report generates data for master detail sections based on two sql queries (given below) that have 'where' clause based on a common external parameter "P_TRX_HDR_ID".
    NOTE: No explicit data link is used NOR an output column of parent query is used in the where clause of detail query as bind parameter.
    - <dataTemplate name="NAPPB2BPORPT" description="Data Template for B2B PO Report" version="1.0">
    - <properties>
      <property name="xml_tag_case" value="upper" />
      <property name="db_fetch_size" value="200" />
      <property name="scalable_mode" value="on" />
      </properties>
    - <parameters>
      <parameter name="P_TRX_HDR_ID" dataType="number" />
      </parameters>
    - <dataQuery>
    - <sqlStatement name="Q_PO_HDR">
    - <![CDATA[
    SELECT poh.po_number                                     PO_NUMBER
              , poh.quote_number                             QUOTE_NUMBER
              ---- other columns -----
             FROM nappcust.napp_o2i_po_headers poh
                ,napp_aso_quote_headers_v naqv
               WHERE 1=1
               AND naqv.quote_number=poh.quote_number
               AND poh.header_id = :P_TRX_HDR_ID
      ]]>
      </sqlStatement>
    - <sqlStatement name="Q_LINES">
    - <![CDATA[
    SELECT  pol.item                                            ITEM
          , pol.partner_part_number                             PARTNER_PART_NUMBER
          -- other columns --
       FROM napp_o2i_po_lines pol
       , napp_o2i_po_headers poh
       , aso_quote_lines_all aqla
       , mtl_system_items_b msib
    WHERE 1=1
      AND poh.header_id               = pol.header_id
      AND pol.header_id               = :P_TRX_HDR_ID
      AND aqla.quote_header_id        = poh.QUOTE_HEADER_ID
      AND msib.inventory_item_id      = aqla.inventory_item_id
      AND msib.organization_id        = aqla.organization_id
      AND (pol.quote_line_number       = aqla.quote_line_id
           OR pol.quote_line_number    = aqla.quote_line_id||1)
      ]]>
      -- Added for the defect 13954
      </sqlStatement>
      </dataQuery>
    - <dataStructure>
    - <group name="G_PO_HDR" source="Q_PO_HDR">
      <element name="PO_NUMBER" value="PO_NUMBER" />
      <element name="QUOTE_NUMBER" value="QUOTE_NUMBER" />
      --- mappings for other columns of "Q_PO_HDR"
      - <group name="G_LINES" source="Q_LINES">
      <element name="ITEM" value="ITEM" />
      <element name="PARTNER_PART_NUMBER" value="PARTNER_PART_NUMBER" />
        --- mappings for other columns of "Q_LINES"
      </group>
      </group>
      </dataStructure>
      </dataTemplate>
    Issue: Sometimes when the parent concurrent request runs for a batch with multiple POs the report generated for the last PO has inconsistent data in the master and detail sections. To elaborate, the detail section is having correct data pertaining to the PO identified by the parameter "P_TRX_HDR_ID". However, the master section is having data pertaining to the previous PO processed from the same batch.
    This issue is not occurring consistently and is not reproducible at will. I
    'm suspecting this could be because of not having data link between the queries but confirm from someone who has experienced this issue.
    Regards,
    Srinath

    is there any way from the page, can we pass the some values, which can identify the page level data?
    if so pass the parameter to BIP report query.

  • Employee tax details are not showing up in Payslip...

    Hi Experts,
    in my project when we are  generating payslip Tax details are not showing up in that.I have checked with RT , the amount is correctly showing in RT.How can i resolve the problem.Please advice me.
    Regards,
    Sai.

    Hi Manoj,
    Thanks for the reply.How can check weather the wagetypes are added or not addeded in PE51.If not added what should i do?
    Thanks in advance.
    SAI

  • Custom Master Detail form not working In EBS

    Custom Master Detail form not working In EBS
    Hi all,
    I have two custom tables -- 1) XXX_DIE_Headers
    2) XXX_DIE_LINES
    I developed a Master Detail form based on above tables. XXX_DIE_Headers is the Master Block (Single record) & XXX_DIE_LINES is the detail block ( Multi line block ).
    Yes, I used Appstand,Template.fmb for developing this form. The Master block has three fields out of which Two are required fields and i have given initial value for them.
    As i deployed it in APPS(EBS),everything about it is working fine (insert,delete,master-detail behaviour) except querying.
    When i press F-11 , It pops up a message "Do you want to save changes you have made" Choice - yes,no,cancel.
    I don't want this message to pop up.
    The scenario is :- I open the form.( without entering ) Press F11 . The message Pops up.
    Please give me suggession on how to work it around so as form directly goes to query mode ,without popping the message.
    regards
    ravi

    It seems that you are changing a database value in your form, do you have any changes in WHEN-NEW-FORM-INSTANCE???
    what the form is trying to tell you that you have changed something, do you want to save it?
    I suggest you debug your form and see what's happening step by step.
    Tony

  • Using Spry Master Details And Flash Videos

    I orginally posted this in the Dreamweaver forum but found
    this one and figured it was a more appropriate place.
    Hi, I am using the Spry Master Detail set to Dynamically load
    a flash player into a detail area. Works great in Firefox but
    doesn't load the player in IE.
    http://www.3screensart.com/default5.cfm
    I have tried various methods
    http://www.3screensart.com/default6.cfm
    but still isn't working as intended.
    I could go back to iFrames but really don't want to do that
    either.

    Did you ever get this to work? I am trying to do something
    similar with no success. I tried swfobject and other ways of
    getting the parameters through Spry to Flash to no avail. Something
    in Spry is mangling my embed on the way to IE whenever it's
    included in a Spry region.
    I am reluctantly being forced to find something other than
    Spry due to IE.

  • Problems with Master-Detail Form not retrieving Detail Rows

    Portal 3.0.7.6.2 on NT
    I am having problems with a Master-Detail Form not retrieving Detail Rows. Sometimes it retrieves all, sometimes about 50%, the majority of the time it's not retrieving any. If it never retrieved any I would suspect that the 'join' condition was wrong but that isn't the case. I didn't have this problem with a prior MD Form I created. I have tried re-creating the MD Form but I get the same problem.
    Is anyone having similar problems/is this a know bug??
    Any help or thoughts are appreciated.

    I experienced performance problems. The simpiest MD form takes about 10 secs. to requery. I's not answer to your question, but there is more problems with this concept.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Michael Finch ([email protected]):
    Portal 3.0.7.6.2 on NT
    I am having problems with a Master-Detail Form not retrieving Detail Rows. Sometimes it retrieves all, sometimes about 50%, the majority of the time it's not retrieving any. If it never retrieved any I would suspect that the 'join' condition was wrong but that isn't the case. I didn't have this problem with a prior MD Form I created. I have tried re-creating the MD Form but I get the same problem.
    Is anyone having similar problems/is this a know bug??
    Any help or thoughts are appreciated.<HR></BLOCKQUOTE>
    null

  • Master-detail form not populated

    Hello,
    i have created a data block on my ELEVI table, and then another data block on ELEVI_CLASA table, table which contains (id_elevi, id_clasa, start_date, end_date). at Master-Detail section i have specified the join condition,
    ELEVI_CLASA.ID_ELEVI=ELEVI.ID
    in the WHEN-NEW-FORM-INSTANCE trigger i have
    begin
    go_block('elevi');
    execute_query;
    end;but the block ELEVI is populated, without being populated ELEVI_CLASA too (that 4 fields).. when i run the form it points to the first item from ELEVI_CLASA and tells me that "Field must be entered". Why happens this?
    Thanks

    Sorry if i'm asking this, but how should i see that last query? when i created the second data block, ELEVI_CLASA, in master-detail section i joined these 2 tables, ELEVI and ELEVI_CLASA

  • Why does Group created on Master console does not show any device count mapped on the managed Amp?

    Q: Why does Group created on Master console does not show any device count mapped on the managed Amp?
    A: When a group is created on master console it will be pushed to all the managed amp which is added with Manage group configuration enabled. The Group pushed to the managed amp will be created as Global group and you can create subscriber groups for the global group to which you will add the device into since we cannot add any devices into global group directly.
    Hence there is no device added to the global group, on the master console it does not show any device count for the groups that are created on master console. 

    Laura Quitugua wrote:
    Hi,
    I have syced my outlook email with my iphone 4s and ipad.
    Note that only the email account info (username, login, server)  is sync'd.
    The actual emails are not sync'd.
    Opening an email on one device does nothing on teh other devices.

  • Table appears for a second before spry Master/Detail loads

    Hi!
    I'm using the Spry Master/Detail function on a page to display an interactive version of the table on the same page. On browser load, the table is briefly displayed before it is replaced by the Spry interactive table. Is there any way to avoid this? It looks kinda hokey.
    ps I know I could avoid it by putting the table on another page, but then it wouldn't be searchable.
    Thanks in advance.
    Mignonne

    Sorry for butting in, Hi Beth,
    Considering the number of images that have to be loaded before the data can be displayed, the page is quite fast.
    There are a couple of things that can be done to make it load faster and to give it a feel that is is loading faster.
    To make it run faster consider
    compressing components with GZip, see here http://developer.yahoo.com/performance/rules.html#gzip
    placing expiry headers on images, css and js see here http://developer.yahoo.com/performance/rules.html#expires
    place the reference to js files further down, see here http://developer.yahoo.com/performance/rules.html#js_bottom
    use a Content Delivery Network, see here http://developer.yahoo.com/performance/rules.html#cdn
    To make it feel as though it runs faster, hide the contents until the data has been processed and issue a message or loading bar to that extent.
    1. add the following style rule to make use of the SpryHiddenRegion feature
    .SpryHiddenRegion {visibility:hidden;}
    2. change the first part of the Master/Detail region to
      <div class="MasterDetail">
        <div spry:region="dsepimediums">
         <div spry:state="loading" align="center"><h2>Loading data, please wait ...</h2></div>
          <div spry:state="ready">
            <div class="MasterContainer">
              <div class="MasterColumn" spry:repeat="dsepimediums" spry:setrow="dsepimediums" spry:hover="MasterColumnHover" spry:select="MasterColumnSelected"><span spry:content="{Plant_Name}"></span></div>
            </div>
          </div>
        </div>
        <div spry:detailregion="dsepimediums" class="DetailContainer SpryHiddenRegion">
          <div class="DetailColumn"><h2>{Plant_Name}</h2></div>
    Here we are making use of the various states that Spry goes through see here http://livedocs.adobe.com/en_US/Spry/1.4/help.html?content=WSFC2EB69F-9F15-4005-A993-B7667 BA7EB75.html
    We are also doing our best to hide our data until fully available see here http://livedocs.adobe.com/en_US/Spry/1.4/help.html?content=WSFC2EB69F-9F15-4005-A993-B7667 BA7EB75.html
    I hope this helps.

  • How to refund to a buyer when paypal details does not show a refund link?

    How to refund to a buyer when paypal details does not show a refund link?

    Yeah, I understand, there is so much more to communication than words on paper.Folks interpret written words according to a whole lot of complicated emotions and feelings. We then project that onto the author and decide why we think they formed that particular combination of words.It is certainly far from perfect.What is missing is volume, intonation, body language, facial expressions, etc. Emoticons are a very big help.I am sorry that you interpreted my tone as abrupt. It was certainly not meant to be. I apologize if I have offended you in any way.I admit my lack of pc. I just did not see this as a social atmosphere, which it  really can be.I was just asking for information. I will try to do better in the future.

  • Email address change not showing on ipad after sync

    iTunes email address change not showing on ipad after sync

    So change it.
    Open iTunes, scroll to the bottom of the main page, tap your account name, log out then sign in with the correct name.

  • I just bought a new Retina Display macbook pro, and I plugged in my iPod touch (4th gen) into the new computer, but it will not show up, even after I typed in the passcode. How do I get my iTouch to sync with my new computer without restoring my itouch?

    I just bought a new Retina Display macbook pro, and I plugged in my iPod touch (4th gen) into the new computer, but it will not show up, even after I typed in the passcode. How do I get my iTouch to sync with my new computer without restoring my itouch?

    iOS: Device not recognized in iTunes for Mac OS X

  • Albums not showing in library after import

    Just install iTunes 10.4.1.10 on Win XP (have same issue on Win 7) it auto added my music folder but its all messed up due to filenames etc so I deleted everything from library with the intention of manually importing everything.  Albums are not showing in library after going File -> Add Folder to Library...
    Any ideas?

    Note that Pause and Resume can be found in the right-click context menu of an item (toolbar drop-down list).
    Do you have the .part file or only the (final) file with a byte count of 0 bytes?
    If the .part file and doesn't have the expected file size (2 GB) is missing then you won't be able to resume this download anyway. You can check the temp folder as well.

  • Not showing company list after installing B1 2007 on windows 2003 standard

    Hi gurus,
    I am facing a problem regarding B1.System not showing  company list after installing B1 2007 on windows 2003 standard edition.
    Plz help me.
    Thanks in advance
    Regds
    Maddy

    Hi Maddy,
    Please tell me did u upgrade from 2005 to 2007 or u performed a new installation of 2007???
    Vasu Natari.

Maybe you are looking for

  • Error 83C00009

    I am unable to get past the blue screen on my HP D110 Photosmart printer with the error 83C00009. I have come to believe it is probably a printhead issue.  Is this fixable or do I need a new printer?

  • Need assistance on 5800Xm internet

    Hi alll, Just yesterday i have purchased the Nokia 5800XM. I am using Vodafone sim from india. I have Vodafone live and idont have the WWW service. Can i use maps using that? Can i use the push mails? as i am new to this kinda mobile pls help me Adva

  • XE APEX 2.1 Select list

    Hello, An Oracle and APEX newbie here, running 10g XE. I have a report on pg 1 with a link to page 2 for editing a row (in a view). On pg 2 is a select list generated from a dynamic LOV from another table. select reminder_type_desc rt_desc, reminder_

  • Applying Active state of top level nav. menu to child pages

    I am trying to keep a consistent look across the child pages of a top level site. I'd like the main navigation bar to remain in an active state for the parent page while the user navigates the child pages associated with that page using submenus. Ide

  • Will Adobe help me reinstall my CS5.5?

    My computer's hard drive crashed last week and I had to purchase a new hard drive and order the recovery cd's from Compaq/HP.  I am unable to locate my download disk.  I found my coupon code and Product serial numbers, I even have the original case.