6/17/2010 3:20:06 AM
Title:
about datagrid
how can we pass,edit and save the data from a textinput to datagrid in runtime?
6/17/2010 3:43:20 AM
you can add and remove and alter the values of the dataprovider of dataGrid . The dataProvider for datagrid can be an array or an arrayCollection. So you just need tho set an array as dataprovider to dataGrid and then edit that array to alter any data in datagrid. use mydataGrid.refresh() method to refresh the datagRid if it does not show the updated data.
6/17/2010 3:50:43 AM
see this
http://www.switchonthecode.com/tutorials/adding-dynamic-rows-to-flex-datagrid
6/19/2010 11:26:09 AM
thanks to you all. for posting