how to get header text of AdvancedDataGridColumnGroup onclick?

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

  1. #1

    Default how to get header text of AdvancedDataGridColumnGroup onclick?

    Hi
    am using AdvancedDataGrid to present data..

    Here am facing some problem with AdvancedDataGridColumnGroup..

    Requirement is something like onclick of AdvancedDataGridColumnGroup i need to
    populate its headerText. I used Header_Release event to do this..
    but am unable to get headerText of that columnGroup..
    any idea how to get header text of AdvancedDataGridColumnGroup on click?

    Thanks in Advance
    Pratap:sad;

    Pratap Reddy Guest

  2. Similar Questions and Discussions

    1. Making Text appear "onClick"
      So, here is what I want to do. Say I have a small image (100x100). I want to be able to click on the image, and have a few words of text appear...
    2. DataGridColumn --- header mouse over text?
      Is it possible? I've been trying to set a mouse over text to it so it gives a quick summary of each columns data(what it is,etc). Anyways, I...
    3. Get Header Text
      Hello, I am trying to get the header text of the datagrid in the ItemDataBound event, but it returns an empty string. Here is what I did:...
    4. Image in header column (not replacing column header text)
      I have a sortable (asc/desc) datagrid and would like to add a small arrow icon (down/up) next to the column header text to improve the UI. Is this...
    5. Datagrid not diplaying header text
      I am trying have a datgrid which always displays the column header text, even though the datareader to which it is bound is empty. I have a...
  3. #2

    Default Re: how to get header text ofAdvancedDataGridColumnGroup on click?

    hi
    try this...

    private function adgName_Click(e:ListEvent):void
    {
    var strHeaderName:string = e.currentTarget.columns[e.columnIndex].headerText;

    }
    jdjivani Guest

  4. #3

    Default Re: how to get header text ofAdvancedDataGridColumnGroup on click?

    also check for "e.currentTarget.columnGroups[e.columnIndex].headerText;"
    jdjivani Guest

  5. #4

    Default Re: how to get header text ofAdvancedDataGridColumnGroup on click?

    sorry not "columnGroups" but "groupedColumns"...
    jdjivani Guest

  6. #5

    Smile Re: how to get header text of AdvancedDataGridColumnGroup onclick?

    Thank you mate ..... It works perfectly ...
    Unregistered 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