XML dataset doesn't change in detail area

Thanks in advance for any help you might be able to lend...
My accordion layout has five panels all of which are using
different XML datasets. I have been wracking my brain to figure out
how to have multiple master data regions filter into one detail
region - I have one setup correctly, but when I change the focus on
the accordion menu, the other XML data is not displayed in the
detail region.
I understand why they do not populate, but I cannot figure
out what to include to have all data regions filter into the detail
area.
Thanks again in advance!
http://www.cateringlyons.com/menus.php

"luke14free" <[email protected]> wrote in
message
news:f3bdm8$gsu$[email protected]..
> I am a new AJAX spry developer and i would like to ask
you a question.
> I have done a code that modifies the content of an xml
file after user
> writes
> something in a box. The code works(is written in php)
and my problem is
> that:
> the xml dataset in the page doesn't refresh. I mean if I
add something to
> the
> xml file the page isn't affected by the changes and
continues to display
> the
> old xml-data. I checked manually the xml file and it's
correctly writed
> and
> closed, and the file has the right permiossions. Can you
tell me why?
http://livedocs.adobe.com/en_US/Spry/1.4/WS95A48911-209C-4075-A90A-4FB06F6DAAA4.html
Massimo Foti, web-programmer for hire
Tools for ColdFusion and Dreamweaver developers:
http://www.massimocorner.com

Similar Messages

  • When i add a new contact to my phone, their details are saved in my contact list, but the name doesn't show up when they ring or txt me, how can i change that?

    when i add a new contact to my phone, their details are saved in my contact list, but the name doesn't show up when they ring or txt me, how can i change that?

    First, try a system reset.  It cures many ills and it's quick, easy and harmless...
    Hold down the on/off switch and the Home button simultaneously until the screen blacks out or you see the Apple logo.  Ignore the "Slide to power off" text if it appears.  You will not lose any apps, data, music, movies, settings, etc.
    If the Reset doesn't work, try a Restore.  Note that it's nowhere near as quick as a Reset.  Connect via cable to the computer that you use for sync.  From iTunes, select the iPad/iPod and then select the Summary tab.  Follow directions for Restore and be sure to say "yes" to the backup.  You will be warned that all data (apps, music, movies, etc.) will be erased but, as the Restore finishes, you will be asked if you wish the contents of the backup to be copied to the iPad/iPod.  Again, say "yes."
    Finally, if the Restore doesn't work, let the battery drain completely.  Then recharge for at least an hour and Restore again.

  • Error message in .docx : 'Open XML file cannot be opened because there are problems with the contents. Details Unspecific error Location: 2'

    I have put a lot of work into a docx document on my Mac, but now can't open it as it gives the error message: 'the Open XML file cannot be opened because there are problems with the contents. Details, Unspecific
    error, Location: 2'
    When opening the original file the message said: 'this file contains word 2007 for Windows equations' etc. but I managed to track changes fine, and saved, closed and re-opened it numerous times without problem. Some graphs seemed moved, and various formulas
    were illegible, but no other weirdness was observed.
    I have microsoft 2008 installed on my Mac OS X version 10.6.8.
    I've tried to fix it using various solutions suggested here, but am afraid am too IT illiterate to have had any luck, please help I'm new to all this!
    I've uploaded it to https://www.dropbox.com/s/hkw9k6lyihzoxpc/SittwayPauktawSQUEACREPORT_KD%2BCH.docx

    Hi,
    This issue is related strictly to oMath tags and occurs when a graphical object or text box is anchored to the same paragraph that contains the equation.
    Please use the "Fix it" tool in the following KB article to resolve the problem. See:
    http://support.microsoft.com/kb/2528942
    Hope this helps.
    Regards,
    Steve Fan
    TechNet Community Support

  • Changes to xml dataset not showing up on webpage

    Using spry, I added a spry:region to my home page that uses an xml dataset to post special announcements on the page. Since the people that maintain this are not technical I want to give them an easy way to post their announcement and the xml file makes a lot of sense. It will be easy for them to post their "School CLOSED today due to snow" announcement.
    So the whole spry dataset works great except that when I update the xml file, the new content does not show up on the web page. I assume its something to do with cache. I did select the no cache option. If I delete the temp files from the browser I can see the changes. This is obviously a problem. I need the changes to appear on the website when the xml file is updated. Is there some way to force the webpage to recreate the dataset everytime the page is loaded? or some other work around that will do what we need?
    You can see the page at www.tribecacommunityschool.com. At this moment there is a school closing announcement up. It may not be up tomorrow but the code will still be on the page if you want to view it.
    Thanks for any help. I did see a post from 2007 that asked this same question and there were no responses. I'm hoping for better luck and a slightly faster turn around.

    Thanks for the help... This additional explanation on Phil_W's post gave me what I need and the refresh works great.
    testxml.js
    var dsData = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info", {useCache:false,  method:'GET'});
    var dsOne = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info/one", { subPaths: ["test" ], useCache:false,  method:'GET'});
    function RefreshMe()
         var auctionxml = 'testxml.xml?cache=' + (new Date()).valueOf();
         dsData.setURL(auctionxml);
         dsData.loadData();
          dsOne.setURL(auctionxml);
         dsOne.loadData();
    testxml.xml file -------
    <?xml version="1.0" encoding="UTF-8"?>
    <data>
      <info id="1">
        <one>
          <test>test me sdfsdf</test>
        </one>
      </info>
    </data>
    html file----------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type='text/javascript' src="jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryEffects.js"></script>
    <script language="JavaScript" type="text/javascript" src="testxml.js"></script>
    </head>
    <body >
    <div class="SpryHiddenRegion" spry:region="dsOne">
      <div id="test">{dsOne::test} </div>
    </div>
    <script language="JavaScript">
    // Switch on Refresh of auction data
    var AuctionInterval = 0;
    AuctionInterval = setInterval ( 'RefreshMe()', 5000 );
    </script>
    </body>
    </html>

  • HT1311 I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    I know this is a basic question, however, how do i change my pass word on itunes to stop my kids from automatically buying tunes from the I store... as my card details are already saved they just log in with their ipods and download via my account

    http://support.apple.com/kb/HE36
    Regards.

  • IHow do I know what the bit details are on an image and how to change it?

    I wanted to send some wildlife images to a magazine who required us to send  quality size 10
    saved at 300dpi and then to send a copy of the same images at 72dpi and 8bit NOT 16bit.
    I have no idea what they are requesting so please:-
    1) How do I discover the details of my photograhs ie resolution 300dpi or 72dpi and how do I change it.
    2) How do I discover the bit on images and again how do I change it as requested by the magazine.
    Please please keep it simple as I am getting on a bit  (pardon the pun) and do not understand computers.
    Photoshop Elements 8  seems so complicated
    Thank you for any help.
    Brian Holland

    Hi Barbara,
    Firstly I hope you had a great Christmas and I wish you a happy and healthy
    new year.
    I have been experimenting with colour changes in my Photoshop Elements 8 and
    am encouraged having changed the colour of my car in the image.
    I now would like to know how I change images that are black i.e. a crow in a
    photograph or change the white in a photograph i.e. a swan.
    I have looked at the Adjust Hue and Saturation and then the 'Master' but
    there does not seem to be a facility to change black and white.
    Also confused by Magenta and Cyan what colours do they represent please
    should I ever need to use them?.
    Thank you again for your help.
    Brian.
    PS Have also been experimenting with text and shapes and can now alter the
    colours of each and with text vary the font, colour, and style. Progress for
    an old chap of seventy three.

  • I bought my iPad in USA. It was set up over there.i live in Ireland.when I try to buy from apple store it doesn't accept my details and says I must put in my USA address.can this be changed?

    I bought my iPad in USA. It was set up over there.i live in Ireland.when I try to buy from apple store it doesn't accept my details and says I must put in my USA address.can this be changed?

    Walk it into the nearest Apple Store there in Ireland, admit you purposely avoided buying it there, and ask them to help you sort it out. I'm sure they'll be happy to service your overseas purchase.....

  • HT204053 I want to change my credit card details, as I have immigrated, but my new details are continuously rejected as 'invalid'!! Any advice??

    I want to change my credit card details, as I have immigrated, but my new details are continuously rejected as 'invalid'!! Any advice??

    What's the full error message that you are getting ? And (though from the same bank) the credit card is the same type as your wife's ? The card was issued by a bank in the country where you and your iTunes account are ?

  • My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling from the install DVD - but no go: no longer compatible, evidently.. What to do?

    My Mail program has gone south on Leopard on my 27-month old Macbook. I can't send, even though the server details are correct. I tried reinstalling the Mail program from the install DVD, but no go; apparently that two-year old Mail is no longer compatible with my up-to-date Leopard. I tried deleting the account (hotmail) from Mail and setting up a different account (Yahoo). After loading all the inbox two things happened: first, I still couldn't send, and second, when I closed the Mail window the whole inbox then disappeared and doesn't come back. Although I couldn't reinstall the Mail program from the install DVD, would it still be possible to reinstall the whole system from that DVD? If I do, will I lose files or will there be another problem since that DVD is now over two years old?
    Thanks for any suggestions; they will be much appreciated.
    P.S. I've just noticed that now I can't change the desktop picture: I go through the motions in Preferences, but the new picture doesn't appear on the desktop. Is there a systemic problem?

    You are waiting for an apology to something that happened over a year ago? Really? This is why there is a manager in the store. You have a problem with an employee you speak to the manager. Just like you did on the phone. You would have gotten your apology in July 2013.
    Here is the information about your upgrade fee.
    Upgrade Fee
    It is because when you have a problem you (customers) go running to the store and want to take up the time of the reps to fix it. Other carriers have third parties that deal with technical support and those locations are few and far between. VZW provides this directly through their stores. Also, when you subsidize a $650 and pay $200 VZW has to pay $400. Your monthly service fee doesn't begin to scratch the surface of paying that back. Not with all the money that is put into the network and its improvements.
    Then over a year later you get someone on the phone who apologized and offered to waive the fee on your phone and you didn't take it? That offer won't come down the pike again.
    One thing you should know is that all these employees are people and as such they sometimes come off cross. I doubt that you speak to everyone so sweetly all the time. Cut them a little slack and put this whole thing behind you after 15 months. Either upgrade with VZW or move on.

  • Removing items from sheet doesn't change SQL

    Discoverer desktop 10.1.2.1
    When I create a sheet, run it, then remove items from the sheet, and then refresh it, the SQL doesn't change (items/columns that were removed remain in the select statement). They (columns) are removed from the resulting report, but it's throwing off my results (number of rows due to summary items). In other words, I had detail numbers, replace them with summary numbers, now it should be grouping by the detail items, but it's isn't. Basically, the tool isn't removing those items from the SQL.
    Has anyone seen this?
    Thanks in advance.

    I'll chime in on this one - we're seeing this same behavior as well. I can reproduce the problem at will like so:
    1) Create a new sheet.
    2) Pick a table, any table, that has a data point.
    3) To this new sheet, add the DETAIL of the data point, and one other attribute.
    4) View the results - they are good.
    5) Realize you made a misteak, go to Edit Sheet, remove the DETAIL and replace it with the SUM of that same data point.
    6) View the results, and become dismayed that they are not grouping at all.
    7) Click on View->SQL Inspector, and observe the detail item is still in the SQL (along with the SUM) despite having removed it in the sheet editor.
    8) Edit sheet - remove all items leaving absolutely everything blank (no selected items, no columns, no calculations, no sorts, nothing)
    9) Click on View->SQL Inspector, and observe the detail item is still in the SQL. That's wrong!
    If that's not a bug, I'm czar of all the Russias.
    // Discoverer Desktop 10.1.2.1
    // Discoverer Desktop Client 10.1.2.48.18
    // EUL Library 10.1.2.48.18
    // EUL 5.1.1.0.0.0

  • Satellite Pro P300 - Fn+f5 combination doesn't change the monitor

    On two P300 laptops, we have a problem that the fn+f5 combination doesn't change the monitor layout.
    If you press fn+f5 you see the bar where the different modes are displayed, but if you release the layout stays the same (laptop as single monitor)
    Thanks, kind regards,
    Davy

    Hi
    In my opinion the previous action (installation of catalyst hotkeys and reinstalled the hotkey driver) is the reason why the FN + F5 does not work properly.
    In my opinion you should clean the registry firstly.
    Use CCleaner tool. Its free and cleans the registry.
    Furthermore you should remove the catalyst hotkeys because this can affect the Toshiba FN Hotkey functionality.
    Finally install the Toshiba drivers from the Toshiba page
    In More info (at the right on the Toshiba driver page) you can find all details about the single tools and drivers and what are they for...

  • Spry XML Dataset reload

    I am new to DW and have a question I am hoping someone will
    answer. I am using Spry.Data.XMLDataSet found in SpryData.js. I
    have it working correctly, but if I change the XML content and
    attempt to reload the page using this data it does not show the
    changes. I have declared a dsObj called dsXMLdata that the
    XMLDataSet method loads. How can I cause the dsXMLdata to reload
    from the file. I would assume this would happen each time the
    Spry.Data.XMLDataSet method is called, but I never see my changes
    unless I rename the file and read the newly named file.. Kind of a
    PIA.
    Thanks.,
    Pat

    I am brand new to Spry, and ran into the same problem. I
    believe you will have the functionality you are looking for if you
    use the subpaths command in your dataset declaration. Otherwise,
    your XML dataset will be limited to the data nodes in the first
    tier of the <root> node (ie. only channel) You can try code
    like this:
    var ds1 = new Spry.Data.XMLDataSet("test.xml", "root", {
    subPaths: ["channel/data1","channel/data2"] });
    then access through the tags {ds1::channel/data1} ....
    If you download the prerelease 1.5 spry package it has the
    API docs with samples. One of the samples is about nested XML data
    structures and is a good source to find out what you can do.
    Hope this helps
    Josh

  • ViewObject Row doesn't change it's state from Row.STATUS_NEW after commit ?

    Hi All,
    i have the following problem:
    In my Application i have a logic which is based on View Object Row state .
    I have the following common problem scenario:
    I'm creating a new Row and putting it into state Row.STATUS_INITIALIZED.
    After modifying the Row attributes it goes in Row.STATUS_NEW (which is correct).
    After executing transaction COMMIT i'm expecting the Row state to be changed to status
    UNMODIFIED (similar as an entities). However this not happens , the Row is still in state
    Row.STATUS_NEW. The entities on which are based the View Object change their statuses
    correctly (they go from NEW to UNMODIFIED state).
    I doesn't find any details about switching View Object Row state (except from INITIALIZED to NEW and vice versa)
    in the documentation, so i'm wondering is this framework behaviour correct ?
    Thanks in advance,
    Krasimir

    You're mixing up the newRow state and the row state (which does not exist for a view row in that way).
    The newRow state can only have values STATUS_INITIALIZED and STATUS_NEW.
    The row state that you want is basically the row state of the updateable entities contained in the row.
    If you want to expose that entity state as row state then follow instructions (example 46) here:
    http://blogs.oracle.com/smuenchadf/examples/
    Sascha

  • Filtering a list with an XML dataset in Spry 1.6.1?

    I have a typical XML data file.  I know how to load it, create a dataset, and then a master-detail display.
    However, what I need to do is create form items that will FILTER the master set as the user clicks options.
    For example, if the list is countries of the world, and the default is to show them all, there could be checkboxes and/or select menus that allow the user to choose countries only in Asia, or only monarchies, etc.
    I can't find any examples of how to do this sort of thing.  Are there any?

    That's very helpful, thanks.  What I am stuck on now is I am trying to "parameterize" my filter function, so I can pass the string to filter by from the checkbox to une function instead of having a filter function for each.
    for example this works to find all items where the color is red:
    var myFF = function(dataSet, row, rowNumber)
              if (row["color"].search('red') != -1)
                        return row;
              return null;
    function ToggleFilter(enable, f)
              if (enable)
               ds1.addFilter(f, true);
              else
              ds1.removeFilter(f, true);
    <label>Red: <input name="red1" type="checkbox" value="" onclick="ToggleFilter(this.checked, myFF);" /></label>
    I would rather have the function be for ANY color, and specify the color on the checkbox, such as this:
    <label>Red: <input name="red2" type="checkbox" value="" onclick="ToggleFilter(this.checked, myFF, 'red');" /></label>
    So that I can easily have checkboxes 'red' 'green' etc.  However I must not be doing it right since if I modify the ToggleFilter function to expect the third parameter, and add the parameter to the ds1.addFilter(f, true) the whole thing fails.

  • UWL Removing detail area menu/context menu that appears on each item/task

    Hi
    On the MSS Universal Worklist on the Portal(EP7 SP14)(ESS MSS 600 SP11, ECC 6), how can I remove the context menu(detail area menu) on each item/task. The options for the menu are Forward and Resubmit.
    I understand(I stand corrected) that it is on uwl.standard xml file where this menu can be removed. Im not too sure what to change on this file.
    Your help is much appreciated and points will be rewarded if your answer works.
    Kind regards
    RD

    Hi Andy
    Thank you for your quick response. I have added the necessary actions to the "List of UWL Actions to exclude" property, and this sorted out my problem.
    Thank you - I have given you points
    Cheers
    RD

Maybe you are looking for

  • External Hard Drive is not responding

    I started to notice this in the last couple days that my external hard drive is not responding to my imac. I could browse the hard drive, but I would not be able to open any file. And, any application that tries to open file from the drive would fail

  • Using iPad

    I recently bought an iPad and keynote. I am a lecturer and want to use these to present my PowerPoint presentations using a projector via a VGA cable. My problem is the projected image seems to be 3/4 of the actual slide, ie a portion of the slide on

  • Reg:  Reversal of PM order confirmation

    Hi All,     Kindly let me know how to do the reversal of confirmation which we did in IW41??

  • Large Apple Network Problems

    Hi, I manage a large house hold which currently has 10 connected Airport Expresses/Extremes creating a roaming network throughout the household. Each setup with the same network name and security settings. One problem we come across is when performin

  • Won't read install disk in drive-any way to restore HD to factory settings?

    I am trying to wipe my iMac's hard drive and restore the computer to factory settings so that I can donate it to a nonprofit with none of my data. However, even though the CD/DVD drive works fine with other CDs/DVDs, when I install the iMac "Software