Click here to Skip to main content
15,896,912 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..
i am using below code
<mx:datagridcolumn headertext="Case ID" width="80" xmlns:mx="#unknown">
                    <mx:itemrenderer>
                        <fx:component xmlns:fx="#unknown">
                            <mx:canvas>
                                <mx:linkbutton id="lnkCaseId" click="lnkCaseId.dispatchEvent(new MouseEvent(MouseEvent.CLICK,true,false)))" label="{data.caseId}" textdecoration="underline" color="#0052A5">
                                </mx:linkbutton>
                            </mx:canvas>
                        </fx:component>
                    </mx:itemrenderer>
                </mx:datagridcolumn>

now i want to add eventListener for linkCaseId,how can i access linkCaseId outside the datagrid?
thanks.
Posted

1 solution

This[^] could help you.
 
Share this answer
 
Comments
niravsahayata 13-May-11 2:23am    
i want this in flex..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900