[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-26 Thread bhaq1972
I managed to achieve what I want using a bit of code. If anyone's intersted. s:Application xmlns:fx=http://ns.adobe.com/mxml/2009; xmlns:s=library://ns.adobe.com/flex/spark xmlns:mx=library://ns.adobe.com/flex/mx minWidth=955 minHeight=600

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-25 Thread bhaq1972
Let me elaborate (sorry I was trying to keep the question short and sweet). In my situation, we don't want our users to edit more than one row at a time. So the datagrid starts off uneditable. They select a row they wish to edit. They then click a button to 'edit' that row. Once editing is

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-25 Thread bhaq1972
We'd prefer to stay within the datagrid. --- In flexcoders@yahoogroups.com, Rishi Tandon rishitandon123@... wrote: Make a pop up window which include the searchable row based on some unique ID and then display the row field and data inside a form. After changing the field value, update

[flexcoders] Re: Spark Datagrid selectedItem question

2011-08-24 Thread Amy
How would a user edit a row that is not selected? --- In flexcoders@yahoogroups.com, bhaq1972 mbhaque@... wrote: How would I go about making the datagrid.selectedItem the ONLY editable row? A bit like making individual columns editable by setting GridColumn.editable. Thanks BH

Re: [flexcoders] Re: Spark Datagrid selectedItem question

2011-08-24 Thread Rishi Tandon
Make a pop up window which include the searchable row based on some unique ID and then display the row field and data inside a form. After changing the field value, update the grid data provider with the changed row value. Sent from my iPhone On Aug 24, 2011, at 10:56 PM, Amy