﻿<?xml version="1.0" encoding="utf-8"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Intersoft Community - WebGrid Enterprise - Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><description /><generator>http://www.intersoftsolutions.com</generator><language>en</language><copyright>Copyright 2002 - 2015 Intersoft Solutions Corp. All rights reserved.</copyright><ttl>60</ttl><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Tue, 21 Jun 2016 08:13:55 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I found that "Copy this Table" works on client-binding WebGrid. You can try to test this feature on the live sample of WebGrid in these samples:&lt;/span&gt;&lt;/p&gt;&lt;ul style="color: #1f497d;"&gt;&lt;li&gt;&lt;a href="http://live.intersoftsolutions.com/cs/WebGrid/ClientBinding_Transactions.aspx?noframe=1" target="_blank"&gt;ClientBinding_Transactions.aspx&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://intersoftsolutions.com:2400/WebGrid/BatchUpdate.aspx" target="_blank"&gt;Bug Tracker with unified theme&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I have forwarded this information to WebGrid development team and update this thread with any news I heard from the team regarding to ASPNET-149.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Mon, 20 Jun 2016 13:59:55 GMT</pubDate><dc:creator>JamesM</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I am wondering if this will be fixed anytime soon. I can see the issue still exists in the current WebGrid 10.0.7200 demo on your website and I would like a possible timeframe for which I can expect the fix.&lt;/p&gt;&lt;p&gt;I do not wish to have workarounds in my code so I hope to remove this one as soon as possible.&lt;/p&gt;&lt;p&gt;Thanks,&lt;/p&gt;&lt;p&gt;James&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Mon, 30 Nov 2015 14:44:03 GMT</pubDate><dc:creator>JamesM</dc:creator><description>&lt;p&gt;This solution does work for me, but there is still the issue of passing the grid name for each table. This should work as a temporary solution until the issue is resolved in the grid code. Thank you.&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Fri, 27 Nov 2015 09:44:37 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I have modified the JS code and ensure that it works on IE 11 browser. For your information, the code is tested using latest build of WebGrid 9 ( 9.0.7200.8) and WebUI.NET Framework 3 (3.0.5000.920).&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please find the modified JS code in the attachment (CopyThisTableScript.txt) and let me know whether this works or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Thu, 26 Nov 2015 18:27:40 GMT</pubDate><dc:creator>JamesM</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;This code did not work for me and acted the exact same way as the current function. However, we have recently found that the issue is not related to the WebGrid version, and works as expected on IE8. The issue is only seen on IE9+.&lt;/p&gt;&lt;p&gt;If you could give me any information on a possible timeline for the code to be fixed, that would be great.&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Mon, 12 Oct 2015 06:59:06 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I use following JavaScript snippet code as an alternate solution of "Copy Table". The code has been tested on a simple WebGrid layout and it works as expected.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function CopyTableToClipBoard()
{
    var grid = ISGetObject("WebGrid1");
    var rootTable = grid.RootTable;
    var gridTableElement = rootTable.GetElement(WG40.BODY, WG40.HTMLTABLE);
    var colHeaderElement = rootTable.GetElement(WG40.COLHEADER, WG40.HTMLTABLE).rows[0];
    var c = "";
    if (colHeaderElement)
    {
        for (var b = 0; b &amp;lt; colHeaderElement.cells.length; b++)
        {
            var a = colHeaderElement.cells[b];
            if (a.type == "Column")
            {
                c += a.innerText + "\t";
            }
        }
    }

    if (c != "")
    {
        c = c.substring(0, c.length - 1) + "\n";
    }

    for (var i = 0; i &amp;lt; gridTableElement.rows.length; i++)
    {
        var rowElement = gridTableElement.rows[i];
        if (wgIsRecordRow(rowElement))
        {
            c += WGMenuEngine.CopyRow(rootTable, rowElement, true);
        }
    }
    wgCopyToCB(c);

    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please let me know if this works for you too.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Thu, 17 Sep 2015 15:44:59 GMT</pubDate><dc:creator>JamesM</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I am still experiencing this issue and have since upgraded to WebGrid version 9.0.7200. I would like an estimate of when this issue will be resolved.&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Mon, 15 Jun 2015 01:28:59 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I'd like to inform you [Martin Fitzgerald] that hotfix of this problem will only available for WebGrid 9. When the nightly-build hotfix is ready, I'll update this thread.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Fri, 12 Jun 2015 13:14:48 GMT</pubDate><dc:creator>martin.fitzgerald@ubs.com</dc:creator><description>I just also came across this issue. The copy table function worked with version 8.0.7200.253 but with version 8.0.7200.260 it doesn't work anymore. We need the newest version as we now have to support IE11.&lt;br /&gt;As far as I can tell I could potentially override the default behaviour and implement the table copy myself, but I don't really want to do that. I really would appreciate if this would be fixed.</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Thu, 07 May 2015 02:25:01 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;The fix for ASPNET-149 has not been implemented in WebGrid code. I may be able to help by raising the priority of the problem.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I'll check the estimate time with the development team and get back to you with any news I heard from them.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Copy to Table not copying the whole table</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-to-Table-not-copying-the-whole-table/</link><pubDate>Fri, 28 Nov 2014 21:10:26 GMT</pubDate><dc:creator>JamesM</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;We are using WebGrid 8 and are trying to copy all the data from the grid. The data is only copied from rows which have been previously selected.&amp;nbsp;&lt;span style="font-size: 10pt;"&gt;I have checked multiple tables, and even the Intersoft grid demo and the problem exists in all locations.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;I would like to know if there is a solution to this, as clicking each individual entry is not feasible with a list of over 100.&lt;/p&gt;</description></item></channel></rss>