Single item Array Problem

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

  1. #1

    Default Single item Array Problem

    Hi,

    I have a XML file like this:

    ...
    <pdpCategory name="Acute Illness">

    <pdpMeasure name = "First Line Antibiotics">
    <targetData>75</targetData>
    <specialtyavg>69</specialtyavg>
    <clinicavg>83</clinicavg>
    </pdpMeasure>

    </pdpCategory>


    <pdpCategory name="Chronic Disease Care">

    <pdpMeasure name = "Diabetic patients on ACE-I (90/120)">
    <targetData>55</targetData>
    <specialtyavg>59</specialtyavg>
    <clinicavg>59</clinicavg>
    </pdpMeasure>

    <pdpMeasure name = "Diabetic patients on Statins (90/120)">
    <targetData>50</targetData>
    <specialtyavg>53</specialtyavg>
    <clinicavg>53</clinicavg>
    </pdpMeasure>

    </pdpCategory>
    ...

    when I access the node by using:
    var dd: Object = pdpm.pdpCategory[event.m].pdpMeasure[event.s];
    var name: String = dd.name;

    But if there is only one 'pdpMeasure' inside 'pdpCategory' node, I cannot get
    the dd.name and the String variable 'name' is 'undefined'.

    How to solve this problem?

    Thanks,
    Derek

    drkshih Guest

  2. Similar Questions and Discussions

    1. Datagrid remove item and update array
      I have a datagrid that I am removing an item from and I need it to update the array after the item is removed. I have data that displays in other...
    2. What kind of item Array is this?
      Hi there, What kind of item Array is this {label:data, .....} ? How can I create this one dynamically from a database result or other ? var...
    3. Change style of a single row of the item list of datagrid, based on a field value of current item...
      Sorry for the long subject guys, but I don't know how better I can resume the matter... Anyway, I have my datagrid showing items of an order. I...
    4. multiline thingy in hash makes it single line item ?
      On 30 Jun 2003 18:58:27 -0700, Asim Suter <asimsuter@hotmail.com> wrote: Why? Why join it first and then split it? I have no idea what...
    5. Add single item to number of files in one step
      Several FAX/DOCUMENT managing programs make multi-page TIFFs. Even the Windows Imaging proggie that shipped with Windows 9x does. Mac
  3. #2

    Default Re: Single item Array Problem

    I suspect it is this issue:
    [url]http://www.cflex.net/showfaq.cfm?Object=faq&channelID=1&faqtype=&defaul tfields=&defaultValues=#Question373[/url]
    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