﻿<?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 - Space character in Text Areas and Dropdowns in Webgrid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Space-character-in-Text-Areas-and-Dropdowns-in-Webgrid/</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>Space character in Text Areas and Dropdowns in Webgrid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Space-character-in-Text-Areas-and-Dropdowns-in-Webgrid/</link><pubDate>Thu, 08 Nov 2018 14:09:57 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;Hi,&lt;br&gt;&lt;br&gt;Chrome with new version introduced a new problem.&lt;br&gt;&lt;br&gt;On click on any cell, cell text ended with space which tuns into "\t" into database while save. which is causing issues. (Unable to attach pictures because of issue into editor)&lt;br&gt;NOTE: Chrome earlier version (67.0) is working fine.&lt;br&gt;&lt;br&gt;I am using Webgrid product version 10.0.&lt;br&gt;&lt;br&gt;Please give us a solutions.&lt;br&gt;&lt;br&gt;Regards&lt;br&gt;&lt;br&gt;Sachin Jain&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/p&gt;</description></item><item><title>Space character in Text Areas and Dropdowns in Webgrid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Space-character-in-Text-Areas-and-Dropdowns-in-Webgrid/</link><pubDate>Tue, 18 Mar 2014 10:02:40 GMT</pubDate><dc:creator>questica</dc:creator><description>&lt;p&gt;Hi Yudi,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;There really needs to be a better way to deal with this.  &lt;/p&gt;
&lt;p&gt;1. This affects various types of cells not just webcombos&lt;/p&gt;
&lt;p&gt;2. I don't have a static list of columns.  This needs to work for any cell in any grid&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Is this something you will consider releasing a patch for?  &lt;/p&gt;</description></item><item><title>Space character in Text Areas and Dropdowns in Webgrid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Space-character-in-Text-Areas-and-Dropdowns-in-Webgrid/</link><pubDate>Mon, 17 Mar 2014 00:59:20 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Double clicking on WebGrid’s cell will select the text inside. Unfortunately, some browsers interpret the empty cell as a cell with &amp;amp;nbsp character. When selected, that character will be used as default filter in WebCombo which will returns no result.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Following work around will remove the space to WebCombo’s textbox.&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;function WebGrid1_OnEnterEditMode(controlId, tblName, editObject)
{
    var WebGrid1 = ISGetObject(controlId);
    var cell = editObject.cellElement;
    var colName = WebGrid1.GetColumnByElement(cell).Name;
    // only applied to CategoryID column
    // which uses WebCombo as the editor type
    if (colName == "CategoryID")
    {
        if (editObject.ToCellObject().Value == "")
        {
            // removes the space, " " by
            // setting TextBox value of WebCombo to ""
            editObject.element.SetTextBoxValue("");
        }
    }
    return true;
}&lt;/pre&gt;
&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Space character in Text Areas and Dropdowns in Webgrid</title><link>http://www.intersoftsolutions.com/Community/WebGrid/Space-character-in-Text-Areas-and-Dropdowns-in-Webgrid/</link><pubDate>Fri, 14 Mar 2014 16:04:30 GMT</pubDate><dc:creator>questica</dc:creator><description>If I have a row in a grid with a text area column or webcombo column, doubleclicking on an empty cell in a record will sometimes show a space character in the cell rather than nothing
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Observations:&lt;/div&gt;
&lt;div&gt;Recent version of Chrome show this bad behaviour.  The character is an (A0) or nbsp character&lt;/div&gt;
&lt;div&gt;Recent version of firefox show the character and it is a standard space&lt;/div&gt;
&lt;div&gt;IE11 doesn't seem to have the problem&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;Can we get a resolution to this.  It is very problematic because it sets a default filter on dropdowns and webcombos that returns no results.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;Thanks&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;Marshall.&lt;/div&gt;</description></item></channel></rss>