Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
Pratap Reddy #1
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
-
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... -
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... -
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:... -
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... -
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... -
jdjivani #2
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
-
jdjivani #3
Re: how to get header text ofAdvancedDataGridColumnGroup on click?
also check for "e.currentTarget.columnGroups[e.columnIndex].headerText;"
jdjivani Guest
-
jdjivani #4
Re: how to get header text ofAdvancedDataGridColumnGroup on click?
sorry not "columnGroups" but "groupedColumns"...
jdjivani Guest
-
Unregistered #5
Re: how to get header text of AdvancedDataGridColumnGroup onclick?
Thank you mate ..... It works perfectly ...
Unregistered Guest



Reply With Quote

