problems with Repeater

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

  1. #1

    Default problems with Repeater

    Hi,

    Does a Repeater somehow influence data-bindings?

    I use exactly the same syntax for data-bindings to the same data in 2 components: One component is initi
    allMyNicksAreTaken Guest

  2. Similar Questions and Discussions

    1. problems with cfformgroup type="repeater" with oracle
      I have code which queries a database table containing skills and I want to output the query results, one record at a time, with a checkbox for each...
    2. Repeater + RadioButtonList
      Hello I need some help... I have a repeater; its source is a dataview based on a datatable of a dataset. The aspx page creates a...
    3. cfformgroup repeater data problems
      The cfformgroup repeater stuffs all instances of a field into a single form scope variable when submitted. Please see the example in Livedocs:...
    4. Repeater
      Why is the repeater displaying only the first 14 items, when my table has 27 items. <%@ Page language="c#" AutoEventWireup="true" %> <%@...
    5. Checkbox in repeater
      Hi, I use a Checkbox in a Repeater, how can I know which Checkbox have changed in OnCheckedChanged? I have tried to set id then checkbox is...
  3. #2

    Default problems with Repeater

    Hi,

    Does a Repeater somehow influence data-bindings?

    I use exactly the same syntax for data-bindings to the same data in 2
    components: One component is initiated the regular way, the other component is
    initialized as a consequence of a Repeater iteration.

    The repeated component, doesn't update its labels when the data is changed;
    the other component has no problem with it...

    Another thing with the Repeater: Although it seems the Repeater instantiates
    its children only once (because they are shown in the correct quantity), it
    initializes the components several times (it really slows down the
    application)! When you put an alert in the initialize() function of the
    repeated component, several alertBoxes are shown!

    allMyNicksAreTaken Guest

  4. #3

    Default Re: problems with Repeater

    Well, the repeater actually creates instances for the repeated components, so
    one would expect the initialize event to fire for each one, right?

    Did you figure out the dataBinding issue? I couldn't find anywhere where we
    were doing dynamic binding within a repeater.

    Tracy

    ntsiii Guest

  5. #4

    Default Re: problems with Repeater

    It seems that the dataBinding issue is not related to the Repeater object, but
    instead to the amount of instances of that component. When a component uses
    data-bindings, these bindings are NOT set, the first time the component is
    loaded and initialized. All following instantiations update their data-bindings
    correctly...

    How is this possible?

    allMyNicksAreTaken 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