The application I'm currently working on uses a datagrid that can sometimes contain 100's of rows. All of these rows need to be inserted or updated in our database when editing.
I'm finding that if there is a large amount of data, doing the inserts can take forever and Flex eventually times out. Looping over each row and calling the function over each iteration seems to take a while when there are a lot of rows. I'm using Remoting with ColdFusion. Is there a better way to handle this? Thanks, Ben

