bind two datasets together

Ask a Question related to Macromedia Flash Data Integration, Design and Development.

  1. #1

    Default bind two datasets together

    Hey guys,

    Basically what I need to do is to bind two datasets together so they each have
    a copy of the same data. Then I'll put a filter on one of them which will be
    later served as the dataprovider of a combo box.

    After I tried to bind the two datasets' dataproviders together in flash
    authoring, at runtime, flash did not copy the data from one into the other one.
    Then I tried to bind them together using actionscript by creating endpoints. it
    still did not work.

    Can anyone tell me if it's possible to bind two datasets together and if
    possible, how?

    Btw, what's the difference in concepts between the "items" property of a
    dataset and the "dataprovider" property of the dataset. It seems that they hold
    the same data as long as u do not use filters.


    Thanks


    LarryLiang Guest

  2. Similar Questions and Discussions

    1. merging multiple datasets to bind to a grid
      How can I merge 2 datasets into one, then bind with the datagrid, or bind the datagrid to 2 datasets? For instance, I have one stored procedure...
    2. DataSets, DataGrid, XML Oh My
      OK -= I am sure everyone is tired of hearing about everyone else's problems with data binding, but here is another one:) I am using the Component...
    3. SAS Datasets
      Does ColdFusion work with SAS datasets, or do they need to be converted?
    4. Datasets & Controls
      I have 5 controls on a page, each having it's own connection to a database and different queries per control. Each control is displayed by the user...
    5. sorting datasets
      Is it possible to use a wildcard or some kind of "begins with" functionality when sorting datasets? For example, I have a list of part numbers. If I...
  3. #2

    Default Bind two datasets together

    Hey guys,

    Basically what I need to do is to bind two datasets together so they each have
    a copy of the same data. Then I'll put a filter on one of them which will be
    later served as the dataprovider of a combo box.

    After I tried to bind the two datasets' dataproviders together in flash
    authoring, at runtime, flash did not copy the data from one into the other one.
    Then I tried to bind them together using actionscript by creating endpoints. it
    still did not work.

    Can anyone tell me if it's possible to bind two datasets together and if
    possible, how?

    Btw, what's the difference in concepts between the "items" property of a
    dataset and the "dataprovider" property of the dataset. It seems that they hold
    the same data as long as u do not use filters.


    Thanks

    LarryLiang Guest

  4. #3

    Default Re: Bind two datasets together

    I am not sure I understand your question. First, in Flex, the word "dataset"
    has no specific meaning. What do you mean when you use the term? Second, the
    word "bind" has a very specific meaning in Flex. Are you using the word in
    that sense?

    All data aware controls have a dataProvider property. For heirarchical
    controls, the dataProvider is typically set to an object or XML. For
    list-based controls the dataProvider is typically an array of objects. An
    "item" is one of the array elements, an object.

    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