Performance issue : itemRenderers created twice

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

  1. #1

    Default Performance issue : itemRenderers created twice

    Hi,

    I have a big performance issue with my flex app.
    I have a repeater whose repeated items contain a Tree.
    I noticed every of those tree elements where created twice (I call a static
    incremental counter on their creationComplete event).

    Does that symptom make you think of any problem I could have in my code ?

    Sergejack Guest

  2. Similar Questions and Discussions

    1. Performance issue
      I have an array with around 40 different url values in it. Im trying to cfhttp each URL in turn, and then parse the contents of each URL one by one....
    2. IsInRole Performance Issue
      Hi, We have a very large AD here and I am noticing that the WindowsPrinciple IsInRole function is taking upwards of 1 second to respond with just a...
    3. CFMail - performance issue
      Hi, I have developed a discussion board on which users can subscribe to particular topics. Subscribed users receive an email (with link back to...
    4. 7.x to 9.x Performance issue in the extreme
      Greetings, The problem: I run an identical program on Server A and Server B. On Server A the program runs in 12 seconds. On Server B it takes 1.5...
    5. Performance Issue using SQLJ
      Hi. We're looking at using SQLJ to see how we could incorporate it into our environment and achieve better throughput and cost savings over using...
  3. #2

    Default Re: Performance issue : itemRenderers created twice

    Hey

    can you please post the relevant code?
    dietmar.paulus Guest

  4. #3

    Default Re: Performance issue : itemRenderers created twice

    No, I may not.
    Sergejack Guest

  5. #4

    Default Re: Performance issue : itemRenderers created twice

    First, Repeater is not a good choice if you have many complex elements because
    it renderers all off the items. How many items are you repeating? (what is the
    length of your dataProivder?)

    Second, I suspect your methodology for analyzing the instantiations. I have
    not see such a behavior. You might post a sample app that demonstrates the
    problem.

    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