Get the returning data from Php and feed it into DataGrid : DataGrid Data « Grid « Flex






Get the returning data from Php and feed it into DataGrid

Get the returning data from Php and feed it into DataGrid
       

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
  layout="absolute" xmlns="*" creationComplete="send_data()">
  <mx:Script>
    
    private function send_data():void {
      userRequest.send();
    }
  </mx:Script>
  <mx:VBox>
    <mx:Label text="Username" /><mx:TextInput id="username" />
    <mx:Label text="Email Address" /><mx:TextInput id="emailaddress" />
      <mx:DataGrid id="dgUserRequest" dataProvider="{userRequest.lastResult.users.user}">
        <mx:columns>
          <mx:DataGridColumn headerText="User ID" dataField="userid" />
          <mx:DataGridColumn headerText="User Name" dataField="username" />
        </mx:columns>
      </mx:DataGrid>
      <mx:TextInput id="selectedemailaddress" text="{dgUserRequest.selectedItem.emailaddress}" />
    <mx:Button label="Submit" click="send_data()" />
  </mx:VBox>
  <mx:HTTPService id="userRequest" url="http://localhost/r.php" useProxy="false" method="POST">
    <mx:request xmlns="">
      <username>{username.text}</username>
      <emailaddress>{emailaddress.text}</emailaddress>
    </mx:request>
  </mx:HTTPService>
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Get data from DataGrid in drag enter eventGet data from DataGrid in drag enter event
2.Fill data from DataGrid to Form fieldsFill data from DataGrid to Form fields
3.Update data in DataGrid from Form fieldsUpdate data in DataGrid from Form fields
4.ArrayCollection used as the data source for DataGridArrayCollection used as the data source for DataGrid
5.Inline data provider for DataGridInline data provider for DataGrid
6.Passing data to a DataGrid controlPassing data to a DataGrid control
7.Get data from selected row in DataGridGet data from selected row in DataGrid
8.Get DataGrid data providerGet DataGrid data provider
9.Remove data from DataGridRemove data from DataGrid
10.Update Chart data as DataGrid being updatedUpdate Chart data as DataGrid being updated
11.Modifying data in a DataGrid controlThe following example lets you add, remove, or modify data in a DataGrid controlModifying data in a DataGrid controlThe following example lets you add, remove, or modify data in a DataGrid control
12.DataGrid data with Simple AttributesDataGrid data with Simple Attributes
13.DataGrid and DataGrid and <mx:ArrayCollection>
14.DataGrid with object array collectionDataGrid with object array collection
15.Define array with Array collection in ActionScript and use it for DataGridDefine array with Array collection in ActionScript and use it for DataGrid