Data Grid Control no of roxcount

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

  1. #1

    Default Data Grid Control no of roxcount

    hi ,
    want to know the rowcount of the datagrid control at runtime so that i can
    request for that many values..
    However on creation complete function of datagrid control returns me a value 7
    ... but in actual when i see the control the number of rows is 26...
    So my main aim is to know what would be the rowcount of a particualr datagrid
    control on a scress resolution so that i dont need to harcode my control with
    specific rowcount...

    Thanks,
    Sohil

    sohilr Guest

  2. Similar Questions and Discussions

    1. Please help - Simple scenario of using ASP.Net Data Grid control
      Hello All I have some SQLServer tables each of them holding an average of 200 to 300 records each. I would like to make them available to select...
    2. How can i get the previous value of a control when editing a data grid?
      When editing a datagrid (C#) I need to know if the user changed the value of cell AND what the previous value was. Is this possible? If so how...
    3. Data grid control limitation
      Hi Folks, My Situation(program requirement): I have datalist control and having Datagrid inside each ItemTemplate column of datalist control.I...
    4. Need data grid control
      I use a ComponentOne vsFlex grid (unbound) for something very similar. Users can click and drag to mark blocks of time in 15 minutes slots. In...
    5. Legend for each row of the asp.net Data Grid Control.
      There is a read only column in data grid control .When i hover on the column I want to display legend detail for each row AT THE BOTTOM OF THE...
  3. #2

    Default Re: Data Grid Control no of rowcount

    If you bound the DataGrid to a an ArrayCollection:
    >>>
    [Bindable]
    public var dataArr:ArrayCollection = new ArrayCollection();
    <<<

    then just use the property
    >>>
    dataArr.length
    <<<


    justria 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