daixufeng / flexigrid

Automatically exported from code.google.com/p/flexigrid
0 stars 0 forks source link

Copy/paste into excel fails #101

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Use a json based grid
2. select data in browser, including column headings
3. Copy/paste into spreadsheet

What is the expected output? What do you see instead?

- Expect grid cells to map to spreadsheet cells.  Instead the data all flows 
into spreadsheet column A.

What version of the product are you using? On what operating system?

- V1.1, Windows XP, Firefox 10.0

Please provide any additional information below.

- Looking at the markup with Firebug I saw there was no <table> tag around the 
<tbody>, so I modified Flexigrid to wrap the tbody instance on line 421 (svn 
revision 10) with a table element.  That seems to fix the problem.

Original issue reported on code.google.com by krbai...@gmail.com on 6 Feb 2012 at 10:52

GoogleCodeExporter commented 8 years ago
I was using a DIV element rather than a TABLE element.  in the call to
$("#ELEM").flexigrid().  So I guess it was my fault.

Original comment by krbai...@gmail.com on 7 Feb 2012 at 7:55