The problem can be summarized as when clicking an item in datagrid, the text area shows the value of the item, but here the compoents are separate and hence events need to be dispatched.

My mxml component file :

<?xml version="1.0" encoding="utf-8"?>
<mx:DataGrid xmlns:mx="http://www.adobe.com/2006/mxml" itemClick="itemClickEvent(event);"  creationComplete="init()">

<mx:Metadata>
  [Event(name="IdSelected", type="one.IdEvent")]
</mx:Metadata>

<mx:Script>
<![CDATA[     import genericReport.*;
              import crewUtilization.*;
              import utils.*;
              import studies.*;
              import mx.rpc.events.FaultEvent;
              import mx.rpc.events.ResultEvent;
              import mx.controls.Alert;
              import mx.events.ListEvent;


      private function itemClickEvent(event:ListEvent):void 
      {
          var _study:Object=event.currentTarget.selectedItem.study;
          dispatchEvent(new IDEvent(_ID));     
      }


]]>

</mx:Script>

<mx:columns>

 <mx:DataGridColumn dataField="name" />
 <mx:DataGridColumn dataField="userId" />
</mx:columns>
</mx:DataGrid>

///////////////////////////////////////////////////////////////

This is my Main MXML Application file :

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" xmlns:custom="*">
<mx:TitleWindow label="Scenario Creation" xmlns:mx="http://www.adobe.com/2006/mxml"
 xmlns:ns1="ccCreation.*">

<mx:Label text="CC CREATION" width="100%" />
<mx:VBox width="100 %" styleName="scenariovboxStyle">

<custom:studySelector id="dg" />
</mx:VBox>
</mx:TitleWindow>   
</mx:Application>
link|improve this question

44% accept rate
feedback

1 Answer

up vote 0 down vote accepted

I think it might be better for studyId to refer to the dataGrid rather than the dataGrid referring to studyId. You can add this to your main mxml:

<mx:TextArea id="studyId" text="{dataGrid.selectedItem.Study}"/>

This should work because TextArea.text will respond to the property changed event of DataGrid.selectedItem, so it will change whenever the selection changes.

EDIT: Dispatching events:

You can dispatch an event from any place in your code, and listeners will be able to listen in to that event. Eg:

<mypackage:MyComponent>
...
private function foo():void
{
    dispatchEvent(new MouseEvent(MouseEvent.CLICK)); // Dispatches a mouse event whenever foo is called.
}

Now you can listen for that event:

<mypackage:MyComponent id="myComponent"/>
...
myComponent.addEventListener(MouseEvent.CLICK, mouseClickHandler);

private function mouseClickHandler(event:MouseEvent):void
{
    ... // code to handle that event here.
}

Hope this helps!

<mx:MainComponent creationComplete="init()" ...>
    ...
    private function init(event:Event):void
    {
        ...
        customComponent.addEventListener(StudyEvent.STUDYSELECTED, studySelectedListener);
        ...
    }

    private function studySelectedListener(event:StudyEvent):void
    {
        studyid.text = event.study.studyId; // or wherever you store your studyId value
        ...
    }
    ...
<mx:MainComponent/>

What happens is whenever a StudyEvent.STUDYSELECTED event is fired from your customComponent, it will be caught by your main function and studySelectedListener will be called.

link|improve this answer
hey...Thanks for the suggestion....But, what about the 'Study' being an object which consists of "StudyId, name and userId". I have to show only studyId. Also, is my ItemClick event correct ?? i.e. if I make the change in my main mxml file and keep the itemclick event as it is, will the code work ?? – user120118 Jun 9 '09 at 20:40
If your object has StudyId and UserId as members, then you can replace selectedItem.Study with selectedItem.StudyId, since the selectedItem will refer to your object(Study). Your itemClickHandler is correct, except you don't have access to the textArea. What you could do if you wanted to stick with your event handler, is to dispatch an event from your itemClickHandler. Your main should catch that event and respond by setting the textArea. This is similar to what I have suggested, the handlers are just hidden by using bindable properties. – CookieOfFortune Jun 9 '09 at 20:51
Another option is to extend DataGrid with a subclass that takes your main class as a property. Then it can have access to all the components contained in main. – CookieOfFortune Jun 9 '09 at 20:53
Hi...I have shown the main MXML application file also now.....As you said, I am supposed to dispatch an event from itemClickHandler....I don't know how to dispatch an event and display the text in the main screen.i.e. catch the output....I will higly appreciate if you could help me with the dispatch event code and the modifications for same in the main application..... I have provided all file codes in the question now.....Please ..I request you to help me with the same... Thanks... – user120118 Jun 9 '09 at 20:56
The reason for dispatch event code is that I am asked to use dispatch event code.... – user120118 Jun 9 '09 at 20:58
show 38 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.