I'm in the process of converting a page that I originally wrote in using flash forms in ColdFusion over to Flex. I have a function that does some calculations based on a couple of cells in each row that would get called with a "change" event. In my CF version I was able to use:
claimFormGrid.editField(i, 'Net_Lbs_Claimed', pounds); But in Flex editField doesn't seem to be available to me. What is the best way in Flex to update a cells value based on values entered into a couple of other cells? Is a labelFunction the route to go? Thanks, Ben

