﻿<?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 this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</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 this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Mon, 02 Jun 2014 23:35:54 GMT</pubDate><dc:creator>Hans</dc:creator><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;Thank you for the reply.&lt;br&gt;&lt;br&gt;I got an article about why browser like Firefox didn’t allow user to have access to the clipboard.&lt;br&gt;&lt;br&gt;“By default, JavaScript is not allowed to read or set your clipboard data for security and privacy reasons.&lt;br&gt;This is because websites scripts can erase and replace what you currently have in your clipboard (data loss issue) and they can read whatever you have in your clipboard (security and privacy issue); as such, you should grant access with caution.”&lt;br&gt;&lt;br&gt;You could read more about the article from this link:&lt;br&gt;- http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard&lt;br&gt;- https://support.mozilla.org/en-US/questions/969543&lt;br&gt;&lt;br&gt;Hope this helps.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.&lt;br&gt;&lt;/p&gt;</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Mon, 02 Jun 2014 08:56:22 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>Hans Hi, 
In my humble opinion, this should be taken care of by Intersoft webgrid's architecture itself, and not by 3rd parties of some kind.

Also, there is no option to copy cell's value using CTR + C to clipboard because of the webgrid's architecture.



</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Mon, 26 May 2014 00:05:24 GMT</pubDate><dc:creator>Hans</dc:creator><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;Perhaps you could use another JavaScript third party library, for example: &lt;a href="http://zeroclipboard.org/"&gt;ZeroClipboard&lt;/a&gt;.&lt;br&gt;&lt;br&gt;Then you could add customize context menu item to call your customize JavaScript function code.&lt;br&gt;&lt;br&gt;Here’s the example snippet code how to add customize context menu item:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;function WebGrid1_OnRowContextMenu(controlId, rowType, rowElement, menuObject){
    var WebGrid1 = ISGetObject(controlId);

    if (!IS.ie)
    {
        //To hide "Copy Row" item
        menuObject.Items.GetNamedItem("mnuCopyRow").Hide();
        //To hide "Copy Table" item
        menuObject.Items.GetNamedItem("mnuCopyTable").Hide();

        // Add new context item nemu
        var copyRowItem = new WebMenuItem();
        copyRowItem.Text = "Copy Row Non-IE";
        copyRowItem.OnClick = function () { copyRowNonIE() };
        copyRowItem.Name = "mnuCopyRowNonIE";
        menuObject.Items.InsertAt(copyRowItem, 0);

        // Add new context item nemu
        var copyTableItem = new WebMenuItem();
        copyTableItem.Text = "Copy Table Non-IE";
        copyTableItem.OnClick = function () { copyTableNonIE() };
        copyTableItem.Name = "mnuCopyTableNonIE";
        menuObject.Items.InsertAt(copyTableItem, 1);
    }
    return true;
}&lt;/pre&gt;&lt;p&gt;Hope this helps.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.&lt;br&gt;&lt;/p&gt;</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Wed, 21 May 2014 09:16:30 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>Hans Hi, 
But is there a way to implement the copy cell in non-IE browsers?

Thanks</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Wed, 21 May 2014 06:07:14 GMT</pubDate><dc:creator>Hans</dc:creator><description>&lt;p&gt;Hello,&lt;br&gt;&lt;br&gt;I got the update from the developer team regarding this issue.&lt;br&gt;Basically this error message occurs due to browser (non IE) limitation itself.&lt;br&gt;You couldn’t do ‘Copy Row’ action in non-IE browser.&lt;br&gt;&lt;br&gt;I have a workaround that you might try. You could hide the “Copy Row” item if the browser isn’t Internet Explorer.&lt;br&gt;You could add validation code in “OnRowContextMenu” client side event. Here’s the snippet example code how to hide the “Copy Rom” item:&lt;br&gt;&lt;/p&gt;&lt;pre&gt;function WebGrid1_OnRowContextMenu(controlId, rowType, rowElement, menuObject){
    var WebGrid1 = ISGetObject(controlId);
    if (!IS.ie)
    {
        //To hide "Copy Row" item
        menuObject.Items.GetNamedItem("mnuCopyRow").Hide();
        //To hide "Copy Table" item
        menuObject.Items.GetNamedItem("mnuCopyTable").Hide();
    }
    return true;
}&lt;/pre&gt;&lt;p&gt;I’m sorry for the inconvenience. Thank you.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.&lt;br&gt;&lt;/p&gt;</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Tue, 20 May 2014 06:45:25 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>Hello Hans, 
Is there any update?

Thanks</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Thu, 08 May 2014 23:24:04 GMT</pubDate><dc:creator>Hans</dc:creator><description>Hello,&lt;br&gt;&lt;br&gt;I apologize for the inconvenience.&lt;br&gt;&lt;br&gt;I have forwarded this issue to the developer team.&lt;br&gt;&lt;br&gt;I will let you know if there is an update regarding this issue.&lt;br&gt;&lt;br&gt;Thank you.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;Hans K.</description></item><item><title>Copy this cell in chrome</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Copy-this-cell-in-chrome/</link><pubDate>Thu, 08 May 2014 05:01:17 GMT</pubDate><dc:creator>roiu@a-g-r-e.com</dc:creator><description>&lt;p&gt;Hello,&amp;nbsp;&lt;/p&gt;&lt;p&gt;I'm trying to achive webgrid cell copy in chrome (v.33), though I'm getting the following error:&lt;/p&gt;&lt;p&gt;"This function is not supported in this version of Gecko engine."&lt;/p&gt;&lt;p&gt;Please advise.&lt;/p&gt;</description></item></channel></rss>