Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default saving data in XML

    hi, i?m using a model to load a xml file and I?m using a data grid do show
    this model data. I created a for to insert new rows in the data grid but I
    also wanto to save this new inserted row into the xml file. how can I do it?
    is it possible to do with model tag or I must do it with web service or other
    way? thanks Paulo

    paulo fabiano Guest

  2. Similar Questions and Discussions

    1. MySQL - saving data
      Hello, just another questions I have 3 databased : A, B, C I can find these 3 databases into /var/lib/mysql/ (3 folders and 2 Ib_log files and a...
    2. saving data from .FSO
      Hi all, I am also looking for similar thing, a simple FSO file reader, something like the SharedObject Reader (SOL) written by Alessandro at...
    3. Saving FDF data via ASP to be opened in a different PDF
      I'm a graphic designer, not a coder, but I have managed to create a web-based PDF form that submits the FDF to an ASP page that routes it to an email...
    4. Saving data to an XML file???
      Is it possible to save data to an XML file? I thought there was but can't seem to find anything to do it. I can read XML data fine, just no way of...
    5. Saving variables or data
      Hi everybody I have a question about saving data via flash. Here is my scenario: I have a swf movie (web site) that contains seminar dates. These...
  3. #2

    Default Re: saving data in XML

    I dont know about saving the new row to the FILE.
    However you could store your XML as an object and dynamically add a node to it.
    Then when ur happy with it save your XML object to a file or send it to a
    servelt which will save it..

    Hope this helps



    twoei22 Guest

  4. #3

    Default Re: saving data in XML

    twoei22 is correct. Use can editField() to update the dataProvider, then use
    one fo the three methods to sent that dataProvider(probably send a string using
    dataProvider.toString()) to the server which will do the file update. You will
    probably just replace the old filewith the modified one.

    I do this regularly.

    It is difficult to update a single record in a file.

    Tracy

    Tracy

    ntsiii Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139