[flexcoders] how to get value from datagrid cell?

2005-05-24 Thread Doodi, Hari - BLS CTR
Hi All, One small and very simple question I can not figure it out how - How to get the value from a cell of datagrid? I am tried the following but in vain. Please some one help me out. Thanks in advance. Function setData(event:Object) {

Re: [flexcoders] how to get value from datagrid cell?

2005-05-24 Thread jeff tapper
You need to tell it which row of data you want myDataGrid.getItemAt(rowNum).column Name At 10:07 AM 5/24/2005, you wrote: Hi All, One small and very simple question I can not figure it out how - How to get the value from a cell of datagrid? I am tried the following but in vain. Please

RE: [flexcoders] how to get value from datagrid cell?

2005-05-24 Thread Doodi, Hari - BLS CTR
] how to get value from datagrid cell? You need to tell it which row of data you want myDataGrid.getItemAt(rowNum).column Name At 10:07 AM 5/24/2005, you wrote: Hi All, One small and very simple question I can not figure it out how - How to get the value from a cell of datagrid? I am tried

RE: [flexcoders] how to get value from datagrid cell?

2005-05-24 Thread jeff tapper
ok, try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; creationComplete=initApp() mx:Script ![CDATA[ var schedAdj_do:Array; function initApp(){ var item1:Object = new Object(); item1.name = Jeff;

RE: [flexcoders] how to get value from datagrid cell?

2005-05-24 Thread Doodi, Hari - BLS CTR
AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] how to get value from datagrid cell? ok, try this: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; creationComplete=initApp() mx:Script ![CDATA[ var schedAdj_do:Array; function initApp