﻿<?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 - FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</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>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Tue, 25 Apr 2017 14:13:20 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;pre&gt;Hi Yudi,&lt;br&gt;&lt;br&gt;Thanks for providing link to understand default behaviour of clipboard for Chrome and Mozilla browser. Although It seems that your provided link for granting javascript access to clipboard is not workable now.&lt;br&gt;I was searching clipboard functionality for chrome. I landed on 2015's sample page created by Matt Gaunt [https://developers.google.com/web/updates/2015/04/cut-and-copy-commands]. I used sample provided by Matt and found the copy on event is working in Chrome browser.&lt;br&gt;&lt;br&gt;I put aspx page's code by slightly changing class name etc. On click on button text is copied in clipboard. May be intersoft already started support. if it is still not supporte then I believe that intersoft can use similar type of functionality to support Copy in Mozilla and chrome. &lt;br&gt;&lt;br&gt;thanks and regards&lt;br&gt;Sachin&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="WebGrid10OnFirefoxAndChrome.WebForm2" %&amp;gt;&amp;lt;!DOCTYPE html&amp;gt;

&amp;lt;html xmlns="http://www.w3.org/1999/xhtml"&amp;gt;
&amp;lt;head runat="server"&amp;gt;
    &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
    &amp;lt;script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script type="text/javascript"&amp;gt;
        $(document).ready(function () {
            var copyEmailBtn = document.querySelector('.button');
            copyEmailBtn.addEventListener('click', function (event) {
                // Select the email link anchor text  
                var emailLink = document.querySelector('.largefont');
                var range = document.createRange();
                range.selectNode(emailLink);
                window.getSelection().addRange(range);

                try {
                    // Now that we've selected the anchor text, execute the copy command  
                    var successful = document.execCommand('copy');
                    var msg = successful ? 'successful' : 'unsuccessful';
                    console.log('Copy email command was ' + msg);
                } catch (err) {
                    console.log('Oops, unable to copy');
                }

                // Remove the selections - NOTE: Should use
                // removeRange(range) when it is supported  
                window.getSelection().removeAllRanges();
            });
        });
    &amp;lt;/script&amp;gt;
    &amp;lt;style type="text/css"&amp;gt;
        .largefont {
            color: #0066FF;
            font-family: arial;
            font-size: 18px;
        }

        .button {
            background-color: #4CAF50; /* Green */
            border: none;
            color: white;
            padding: 1px 1px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 10px;
        }
    &amp;lt;/style&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;form id="form1" runat="server"&amp;gt;
        &amp;lt;div&amp;gt;
            &amp;lt;p&amp;gt;&amp;lt;span class="largefont"&amp;gt;Lorem Ipsum&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;
            &amp;lt;p&amp;gt;
                &amp;lt;button class="button"&amp;gt;Click to Copy text&amp;lt;/button&amp;gt;&amp;lt;/p&amp;gt;
        &amp;lt;/div&amp;gt;
    &amp;lt;/form&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/pre&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Mon, 13 Mar 2017 04:50:39 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;The provided link worked. Thanks for help.&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Glad to hear the good news.&lt;/span&gt;&lt;/p&gt;&lt;br&gt;&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;The issue of Copy cell still exist for Chrome and Firefox. Is any solution exist for this also ? In IE copy cell and copy Row options working properly but not in FireFox and Chrome. For some reason it is also not working for live sample also.&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;This is limitation for non IE browser. Browser like Firefox will block access to the clipboard by default.&lt;/span&gt;&lt;/p&gt;&lt;br&gt;&lt;blockquote&gt;By default, JavaScript is not allowed to read or set your clipboard data for security and privacy reasons.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;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Source: &lt;a href="http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard" target="_blank"&gt;http://kb.mozillazine.org/Granting_JavaScript_access_to_the_clipboard&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Tue, 07 Mar 2017 14:59:47 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The provided link worked. Thanks for help.&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; The issue of Copy cell still exist for Chrome and Firefox. Is any solution exist for this also ? In IE copy cell and copy Row options working properly but not in FireFox and Chrome. For some reason it is also not working for live sample also.&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I am attaching the screenshot for your reference. It would be good if this feature support Chrome and FireFox also.&lt;br&gt;regards&lt;br&gt;Sachin&lt;br&gt;</description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Mon, 06 Mar 2017 04:10:56 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;... We found that your sample is working properly on Firefox and Chrome...&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Glad to know that the sample helps.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;... Can you provide latest hotfix dll's link ?...&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;The latest version of WebUI.NET Framework 3.0 is 3.0.5000.976 which can be downloaded from &lt;a href="https://www.intersoftsolutions.com/Community/Attachments/64779/WebUINET3_0_5000_976.zip" target="_blank"&gt;here&lt;/a&gt;. I recommend you to download and apply the hotfix then retest the reported problem.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Should the problem persist, please feel free to let me know. Look forward to hearing back from you.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Mon, 27 Feb 2017 15:03:49 GMT</pubDate><dc:creator>sjain</dc:creator><description>Hi Yudi,&lt;br&gt;      Sorry for delay in reply. Thanks for your sample. &lt;br&gt;We found that your sample is working properly on Firefox and Chrome. We checked detail and found that sample have IsNet.dll,ISNet.WebUI.dll and ISNet.WebUI.Resources.dll version as 3.0.5000.976; we were using  3.0.5000.975 which we got as hotfix; earlier version was  3.0.5000.969 . &lt;br&gt;&lt;br&gt;Can you provide latest hotfix dll's link ? &lt;br&gt;&lt;br&gt;We also found that for some reasons copy this cell/row/table are not working fo Chrome/Firefox for your provided sample or on live sample site; an alert appears(The function is not natively supported by the browser.). I attached screenshot of sample. Could you suuggest that how can we fix this because this feature is already working on IE?&lt;br&gt;&lt;br&gt;&lt;br&gt;regards&lt;br&gt;Sachin&lt;br&gt;&amp;nbsp;&lt;br&gt; </description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Fri, 25 Nov 2016 05:04:49 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Thank you for the sample (WebgridBrowserCompTesting.zip).&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Please find my simple sample created based on WebgridBrowserCompTesting (aspx and aspx.cs file from WebgridBrowserCompTesting.zip). Per my test, WebGrid works without problem on Firefox 50.0 and Chrome 54.0 browser.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Should you have different result, please feel free to let me know.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>FileFoz and Chrome rendering or displaying issue</title><link>http://www.intersoftsolutions.com/Community/WebGrid/FileFoz-and-Chrome-rendering-or-displaying-issue/</link><pubDate>Thu, 17 Nov 2016 13:47:28 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;What settings are required to run webgrid in Chrome and FireFox.&lt;br&gt;&lt;br&gt;Please see the attached sample. Issues are&lt;br&gt;&lt;br&gt;1) For Chrome and FireFox no rows are displaying. Also webgrid footer is not displaying that how many records are available. &lt;br&gt;2) Although grid height set as 100% as suggested in earlier discussion (https://www.intersoftsolutions.com/Community/WebGrid/WebgridHeightissue/); it works for IE but not for Chrome and FireFox. Images are attached.&lt;br&gt;&lt;br&gt;Don't know, Is it rendering issue, setting issue, CSS issue&amp;nbsp; or something else? &lt;br&gt;&lt;/p&gt;&lt;p&gt;regards&lt;/p&gt;&lt;p&gt;Sachin&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>