Is there a way to select a single cell in a Flex DataGrid, and then either select the text inside of the cell, or select the entire cell for copy + paste? It doesn't even have to copy into an excel friendly format, flat text would be fine. So far, I have only been able to select an entire row, and that doesn't seem to copy very well. I am using a DataGrid to display an error log, and I would like to be able to Copy the stack trace information out and throw it in a bug report or an email.

Thanks.

link|improve this question

1  
You can select the test from a DataGrid with editable="true" : but that's a workaround - not a solution. – Amarghosh Nov 26 '09 at 7:05
I would rather not have the data be user-editable, but it is an option. – Rob Lund Nov 26 '09 at 16:08
feedback

2 Answers

up vote 2 down vote accepted

This works great for me: http://hillelcoren.com/2009/09/17/import-export-copy-paste-flex-datagrid/

link|improve this answer
feedback

So after reading through the article Mike Sickler posted. I found some more posts on copying out of Flex (and Flash). See here and here. It looks like the best way is to create a hidden div on the page that you place your copied text into on Ctrl + C, and then putting that on the clipboard.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.