﻿<?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 - Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</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>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Mon, 29 Oct 2018 15:07:46 GMT</pubDate><dc:creator>DEVELOP.net@METODO.IT</dc:creator><description>&lt;p&gt;I already renamed the funcion and set an alert to test if enter, and enter in the javascript, but the filter not works.&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Mon, 29 Oct 2018 13:54:37 GMT</pubDate><dc:creator>lorin13</dc:creator><description>&lt;p&gt;Try changing the name of the function (I actually named it GridOnEndRowEditing) just so it's clear you aren't trying to call a built in Intersoft function and also make sure that the javacript file where the function is defined is included in the page the grid is on.&amp;nbsp; In Chrome's dev tools throw a breakpoint into the function and see if it is hitting it after you filter.&amp;nbsp; If it is, step through and see where it might be failing.&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Mon, 29 Oct 2018 12:10:19 GMT</pubDate><dc:creator>DEVELOP.net@METODO.IT</dc:creator><description>&lt;p&gt;Thanks Lori Neville for the code, i've tried but for me, your code not working. :(&lt;/p&gt;&lt;p&gt;&amp;lt;ClientSideEvents OnEndRowEditing="OnEndRowEditing"&amp;gt;&amp;lt;/ClientSideEvents&amp;gt;&lt;/p&gt;&lt;p&gt;The filter bar not change the value using this javascript.&amp;nbsp;&lt;/p&gt;&lt;p&gt;Any idea?&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Fri, 26 Oct 2018 17:53:01 GMT</pubDate><dc:creator>lorin13</dc:creator><description>&lt;p&gt;Probably if anyone is still around at Intersoft.&amp;nbsp; I've asked questions in chat and email for a few issues over the last few months and haven't heard anything.&amp;nbsp; They no longer answer forum questions and they haven't put any hotfixes out in a while either.&amp;nbsp; I've resorted to asking a reseller if they know anything but haven't heard back.&amp;nbsp;&lt;/p&gt;&lt;p&gt;That being said I was able to correct the filter (and the tables cells and add new row because we were having problems there too) by using the Client Side Event OnEndRowEditing.&amp;nbsp; Here is what I did.&amp;nbsp; It's not pretty but it works.&lt;/p&gt;&lt;pre&gt;&amp;nbsp;&lt;span style="font-size: 9pt;"&gt;function OnEndRowEditing(controlId, row) {&lt;/span&gt;&lt;/pre&gt;&lt;pre&gt;    var row_cells = row.GetCells();
    for (var i = 0; i &amp;lt; row_cells.length; i++) {
        var row_cell = row_cells[i];
        if (!row_cell) {
            continue
        } else {
            var row_cell_value = row_cell.Get("Value");
            if (row_cell.DataChanged == true &amp;amp;&amp;amp; row_cell_value.length &amp;gt; 0) {
                if (row_cell_value.substring(row_cell_value.length - 1) == "\t") {
                    row_cell.SetValue(row_cell_value.substring(0, row_cell_value.length -1), true);
                }
            }
            var row_cell_text = row_cell.Get("Text");
            if (row_cell.DataChanged == true &amp;amp;&amp;amp; row_cell_text.length &amp;gt; 0) {
                if (row_cell_text.substring(row_cell_text.length - 1) == "\t") {
                    row_cell.SetText(row_cell_text.substring(0, row_cell_text.length - 1), true);
                }
            }
        }
    }

    return true;
}&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Fri, 26 Oct 2018 15:36:15 GMT</pubDate><dc:creator>DEVELOP.net@METODO.IT</dc:creator><description>&lt;p&gt;Is possibile to have an official fix in the .dll file so is easy to set up?&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Fri, 26 Oct 2018 14:05:50 GMT</pubDate><dc:creator>lorin13</dc:creator><description>&lt;p&gt;Do you have this in your web.config?&lt;/p&gt;&lt;pre&gt;&amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.EnableWebResources" value="Never"/&amp;gt;&lt;/pre&gt;&lt;p&gt;As I stated previously, the value can be set to "Never" as shown in the example which doesn't use any of the Resource files or to ResourceOnly which only uses SmartWebResources for images, styles, xml files.&lt;/p&gt;&lt;p&gt;Otherwise I'm honestly not sure. All I can tell you is to right click on the image and click inspect element in IE or inspect in Chrome and see what the src of the image is.&amp;nbsp; Then make sure that the image exists in that path.&lt;/p&gt;&lt;p&gt;Just a disclaimer - I don't work for intersoft and I am by no means an expert.&amp;nbsp; My knowledge is limited to the pieces of information that I've researched to exhaustion and it is still spotty.&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Fri, 26 Oct 2018 01:31:10 GMT</pubDate><dc:creator>rogerchen.tangshuo@gmail.com</dc:creator><description>&lt;p style='box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-break: break-all; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode"; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;'&gt;When i disable SmartWebResources (doesn't use SmartWebResources) and set the path like below：&lt;/p&gt;&lt;p style='box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-break: break-all; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode"; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;'&gt;&lt;span style='background-color: rgb(255, 252, 225); font-family: "Courier New", Tahoma; font-size: 9pt;'&gt;&amp;nbsp;&amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.RenderingMode" value="HTML5" /&amp;gt;&lt;/span&gt;&lt;/p&gt;&lt;pre style='box-sizing: border-box; background-color: rgb(255, 252, 225); font-family: "Courier New", Tahoma; font-size: 9pt; word-break: break-all; color: rgb(0, 0, 0); font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;'&gt;  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.ScriptDirectory" value="~/CommonLibrary/WebGrid/V10_0_7200/" /&amp;gt;  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.ImagesDirectory" value="~/CommonLibrary/Images/" /&amp;gt;
  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.SharedScriptDirectory" value="~/CommonLibrary/Shared/" /&amp;gt;
  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.WebDesktopScriptDirectory" value="~/CommonLibrary/WebDesktop/V5_0_7200/" /&amp;gt;
  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.LocalizationDirectory" value="~/CommonLibrary/WebGrid/V10_0_7200/Localization/" /&amp;gt;
  &amp;lt;add key="ISNet.WebUI.WebGrid.v10_0_7200.HelpURL" value="~/Help/h_webgrid.html" /&amp;gt;
&lt;/pre&gt;&lt;p style='box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-break: break-all; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode"; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;'&gt;&amp;nbsp;and set Common Library folder in IIS,&lt;/p&gt;&lt;p style='box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; word-break: break-all; color: rgb(0, 0, 0); font-family: "Lucida Sans Unicode"; font-size: 13.3333px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;'&gt;but some image do not show，see attach file&lt;/p&gt;&lt;p&gt;&lt;br class="Apple-interchange-newline"&gt;&lt;b&gt;&lt;/b&gt;&lt;i&gt;&lt;/i&gt;&lt;u&gt;&lt;/u&gt;&lt;sub&gt;&lt;/sub&gt;&lt;sup&gt;&lt;/sup&gt;&lt;strike&gt;&lt;/strike&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Thu, 25 Oct 2018 12:14:08 GMT</pubDate><dc:creator>lorin13</dc:creator><description>You can't modify the dll.&amp;nbsp; If you wish to use the script files, you will need to disable SmartWebResources by setting EnableWebResources to ResourceOnly (uses the SmartWebResources for images, styles, xml files etc but not for Script files) or Never (which doesn't use SmartWebResources).&amp;nbsp; EnableWebResources be can set globally in web.config or individually on each webgrid control.&amp;nbsp; You will need to also set the path of the ScriptDirectory, SharedScriptDirectory, ImagesDirectory and WebDesktopScriptDIrectory.&amp;nbsp; Finally, the Common Library folder that the script files are in will need to be configured as an application in IIS.</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Thu, 25 Oct 2018 08:22:27 GMT</pubDate><dc:creator>rogerchen.tangshuo@gmail.com</dc:creator><description>&lt;p&gt;&lt;span style='display: inline !important; float: none; background-color: transparent; color: rgb(51, 51, 51); font-family: "myriad_set_protext","Lucida Grande",Helvetica,sans-serif; font-size: 16px; font-style: normal; font-variant: normal; font-weight: 400; letter-spacing: normal; line-height: 24px; orphans: 2; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;'&gt;webgrid_ui.js can modify, but &lt;/span&gt;How to update&amp;nbsp;ISNet.WebUI.WebGrid.Resources.dll file. Thanks&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Wed, 24 Oct 2018 14:01:55 GMT</pubDate><dc:creator>lorin13</dc:creator><description>&lt;p&gt;What's happening is that a tab is being added to the innerText of the cell element.&amp;nbsp; Believe it or not, innerText functionality was not working according to standards in previous versions of Chrome.&amp;nbsp; As part of Chrome's latest release, they fixed it to adhere to these standards.&amp;nbsp; Here is the link to the standard:&amp;nbsp;&lt;a href="https://www.w3.org/TR/html53/dom.html#dom-htmlelement-innertext" target="_blank" style="font-size: 10pt;"&gt;innerText functionality&lt;/a&gt;.&amp;nbsp; If you look at number 6, it explains the standard for table cells.&amp;nbsp; As far as a fix for this and functionality of the webgrid, I'm still workng on that.&amp;nbsp; I've tried stripping the tab and then setting the innerText to the stripped value but it always gets added back.&amp;nbsp; So far the only thing that I can do is strip the value before the code retrieves the data from the database.&amp;nbsp;&lt;/p&gt;</description></item><item><title>Webgrid filter does not work since Chrome 70 update</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Webgrid-filter-does-not-work-since-Chrome-70-update/</link><pubDate>Mon, 22 Oct 2018 14:03:46 GMT</pubDate><dc:creator>aliard@sigma-rh.com</dc:creator><description>&lt;p&gt;All of our client who up^graded Chrome to version 70 are not able to use the filter anymore inside the Webgrid control.&lt;/p&gt;&lt;p&gt;Regards,&lt;/p&gt;&lt;p&gt;Alex&lt;/p&gt;</description></item></channel></rss>