I am working in Flex3. Here I have a datagrid which contains data. some columns are editable. when the user changes the column data web service is called. Here using function of focusOut, I am calling the web service by sending the data which comes from the datagrid through focusOut function. Now I want to call the web service when the user changes the column data and presses keyboard key 'Enter'. Here I can call function but the event does not carry datagrid's data to the function being called. Some one give me solution for this. Thank You.

link|improve this question

40% accept rate
feedback

3 Answers

up vote 1 down vote accepted

use the enter event to send the data my requirement i used the following for UPDATE PROCESS( I THINK YOU ALSO EXPECTING FOR THE SAME)

CHECKOUT THE CODE..hope this will be useful....

<mx:DataGrid id="datagrid2" dataProvider="{cat}"  editable="true"  keyDown="gridkey(event)"   x="10" y="152"  visible="true" width="703">
            <mx:columns>
            <!--<mx:DataGridColumn dataField="catCode" headerText="CATEGORY CODE" editable="false"/>-->         
                    <mx:DataGridColumn dataField="catDesc" headerText="CATEGORY DESCRIPTION"  editable="true">
                    <mx:itemEditor >

                        <mx:Component>

                            <mx:TextInput  errorColor="#0294b3" errorString="Click Enter and Save"  restrict="A-Za-z0-9" maxChars="15"/>
                        </mx:Component>
                    </mx:itemEditor>
                    </mx:DataGridColumn>

                <mx:DataGridColumn dataField="updatedate" headerText="LAST UPDATE DATE" editable="false"/>

IN ACTION SCRIPT...USE THE FOLLOWING

public function gridkey(event:KeyboardEvent):void
            {

                if (event.keyCode == Keyboard.ENTER)
                {
                    var obj:Object = event.currentTarget.selectedItem;

                    for(var n:String in cat)
                    {

                        var items:CategoryVO = cat[n] as CategoryVO;
                        if(obj.catCode == items.catCode && obj.orgId == items.orgId)
                        {

                            items.catCode=obj.catCode;
                            items.catDesc=obj.catDesc;
                            items.updateby=obj.updateby;
                            items.alter = "Altered";  //use    private  var _alter:String; in flex VO class where remote class getters and settrs are used...//
                            //Alert.show(items.id.toString());
                            DeletedItems.push(items.catCode);
                        //  Alert.show(DeletedItems.toString());

                        }

                    }

                }
link|improve this answer
Thank you @ConquistadorAravinth, Now its working properly now. I really appreciate your help. – Naveen kumar Pavuturi Apr 20 '11 at 5:14
Yup!:-) @Naveen Kumar Pavuturi – ConquistadorAravinth Apr 20 '11 at 7:20
feedback

You could use the enter event on your itemEditor to send the data to your web service.

Here's a rough example:

<mx:itemEditor>
  <mx:Component>
    <mx:VBox>
      <mx:TextInput id="setCity" width="130" text="{data.City}" enter="outerDocument.callMyWebService(data)"/>
    </mx:VBox>
  </mx:Component>                 
</mx:itemEditor>
link|improve this answer
feedback

I think you should use Event itemEditEnd details can be found at

DataGrid Events

an useful example is

Creating an editable DataGrid control in Flex

hopes that helps

link|improve this answer
Thank You @Imran and @Jason Towne. Yes, I used itemEditor in the Datagrid whose parent component is a panel. When a user clicks on the text input box then i'm calling focusIn function and storing the data into an temp variable and when the user enters data and clicks outside then I am calling focusOut function. – Naveen kumar Pavuturi Apr 15 '11 at 10:09
In this function checking the data changed or not, if the entered data is different from the previous,then I am calling related web service. Now, I added itemEditEnd function to accept user keyboard event. Its working properly but when a user changes data and clicks outside of the panel, the no action is happening. – Naveen kumar Pavuturi Apr 15 '11 at 10:11
Here, I want to keep the previous data if a user enters invalid data. – Naveen kumar Pavuturi Apr 15 '11 at 10:29
When a user enters wrong data and clicks outside of the data grid, no event is generating and the wrong data is remaining in the text input. – Naveen kumar Pavuturi Apr 15 '11 at 10:41
you may use "valid" and "invalid" event for that purpose – Imran Apr 15 '11 at 13:58
feedback

Your Answer

 
or
required, but never shown

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