﻿<?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 - bug</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</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>Context menu problem in Firefox</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Fri, 15 Nov 2013 15:11:37 GMT</pubDate><dc:creator>aliard@sigma-rh.com</dc:creator><category>WebTextEditor</category><category>Firefox</category><category>bug</category><category>Context Menu</category><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;When I try to use the context menu on a table in Firefox (version 25.0), I encouter a bug, where the browser's default context menu is also openned, on top of the WebTextEditor content menu.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Alex&lt;/p&gt;</description></item><item><title>BUB: GridView FREEZES when using Custom Devforce Verifiers</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Wed, 08 Jun 2011 02:10:27 GMT</pubDate><dc:creator>bap3</dc:creator><category>bug</category><description>&lt;p&gt;The GridView control freezes when you add more than 1 member name to a custom verifier trigger.  See attached project (VS 2010).&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Extract Project and Open ClientUIDataApp2&lt;/li&gt;&lt;li&gt;Compile and Run&lt;/li&gt;&lt;li&gt;Navigate to Products Page&lt;/li&gt;&lt;li&gt;Edit Product Name "Chang" in first row.&lt;/li&gt;&lt;li&gt;Add 3 characters to end of name to trigger validation error (eg. "chang111")&lt;/li&gt;&lt;li&gt;Tab off field or click off record.&lt;/li&gt;&lt;li&gt;GridView FREEZES UP.&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;More Info:&lt;/p&gt;
&lt;p&gt;See Products.cs in ClientUIDataApp2.DomainModel project to see implemenation of ProductName verifier.  The offending line of code is in bold below:&lt;/p&gt;&lt;pre&gt; public static Verifier ProductNameVerifier()
            {
                string Description = "CUSTOM Product Name Verifier: Product Name cannot be 8 characters long.";
                DelegateVerifier&amp;lt;ClientUIDataApp2.DomainModel.Product&amp;gt; v = new DelegateVerifier&amp;lt;Product&amp;gt;(Description, ProductNameCondition);

                // BUG: GridView freezes when more than 1 member names are added to verification trigger     
               &lt;strong&gt; v.AddTriggers(Product.PropertyMetadata.ProductName.Name, Product.PropertyMetadata.UnitPrice.Name);&lt;/strong&gt;

                // NOTE: this works but limits muti-field trigger.
                // v.AddTriggers(Product.PropertyMetadata.ProductName.Name);

                v.VerifierOptions.ExecutionModes = VerifierExecutionModes.InstanceAndOnAfterSetTriggers;
                return v;
            }&lt;/pre&gt;

&lt;p&gt; &lt;/p&gt;</description></item><item><title>WebListBox cant detect Selected item is this a bug?</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Mon, 06 Jun 2011 06:57:41 GMT</pubDate><dc:creator>neil.turner@ntd.co.uk</dc:creator><category>bug</category><category>postback</category><category>weblistbox</category><category>selected</category><category>item</category><description>&lt;p style=""&gt;I'm trying to get the selected item of a WebListBox on post back so i can add one item in a weblistbox to another WebListBox but the selected item isn't being detected selected when the button is clicked&lt;/p&gt;
&lt;p style=""&gt;Code below&lt;/p&gt;
&lt;p style="" /&gt;
&lt;p style=""&gt;               &amp;lt;table cellspacing="0" cellpadding="0"&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;tr valign="top"&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;td&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                        &amp;lt;ISWebEssentials:WebListBox ID="WebListBox1" runat="server" Height="160px" &lt;/p&gt;
&lt;p style=""&gt;                            Width="250px" &amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                            &amp;lt;Items&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                                &amp;lt;ISWebEssentials:WebListBoxItem Name="WebListBoxItem0" Text="1" /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                                &amp;lt;ISWebEssentials:WebListBoxItem Name="WebListBoxItem1" Text="2" /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                                &amp;lt;ISWebEssentials:WebListBoxItem Name="WebListBoxItem2" Text="3" /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                                &amp;lt;ISWebEssentials:WebListBoxItem Name="WebListBoxItem3" Text="4" ToolTip="4" /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                            &amp;lt;/Items&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                            &amp;lt;/ItemStyle&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=""&gt;                        &amp;lt;/ISWebEssentials:WebListBox&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;td width="60" align="center" valign="middle"&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                        &amp;lt;asp:Button ID="Button1" runat="server" Text="Add" ToolTip="Add item" onclick="btnAddItem_Click" /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;td&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                        &amp;lt;ISWebEssentials:WebListBox ID="WebListBox2" runat="server" Height="160px" Width="250px"&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                            &amp;lt;Items&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                                &amp;lt;ISWebEssentials:WebListBoxItem Name="WebListBoxItem0" Text="a" /&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                            &amp;lt;/Items&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                        &amp;lt;/ISWebEssentials:WebListBox&amp;gt;&amp;lt;/td&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                    &amp;lt;/tr&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;                &amp;lt;/table&amp;gt;&lt;/p&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=""&gt;Code behind&lt;/p&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style="" /&gt;
&lt;p style=""&gt;        protected void btnAddItem_Click(object sender, EventArgs e)&lt;/p&gt;
&lt;p style=""&gt;        {&lt;/p&gt;
&lt;p style=""&gt;            foreach (WebListBoxItem wli in WebListBox1.Items)&lt;/p&gt;
&lt;p style=""&gt;            {&lt;/p&gt;
&lt;p style=""&gt;                if (wli.Selected)&lt;/p&gt;
&lt;p style=""&gt;                {&lt;/p&gt;
&lt;p style=""&gt;                    WebListBox2.Items.Add(wli);&lt;/p&gt;
&lt;p style=""&gt;                }&lt;/p&gt;
&lt;p style=""&gt;            }&lt;/p&gt;
&lt;p style=""&gt;        }&lt;/p&gt;
&lt;p /&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p style=""&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p /&gt;</description></item><item><title>WebGrid: disappearing columns and scrolling slider locked</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Tue, 21 Dec 2010 05:24:16 GMT</pubDate><dc:creator>Eric</dc:creator><category>WebGrid</category><category>bug</category><category>crash</category><category>visible</category><category>column</category><category>slider</category><category>columns</category><category>locked</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have created a demo-project for you which shows the problems. Please see attached ZIP.&lt;/p&gt;
&lt;p&gt;Please include the Intersoft framework 3.0.5000.705, WebGrid 6.0.7200.220, System.Web.Extensions.dll 1.0.61231.0, AjaxControlToolkit.dll 1.0.10606.0, AJAXExtensionsToolbox.dll 1.0.61025.0 in order to get the same results. Please also set the .NET Target Framework to 2.0.&lt;/p&gt;
&lt;p&gt;To reproduce the problem:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;select in the dropdown "ABC" and click refresh button&lt;/li&gt;&lt;li&gt;in the upper WebGrid make the first column wider (resize it)&lt;/li&gt;&lt;li&gt;click on any row in the upper WebGrid&lt;/li&gt;&lt;/ol&gt;
&lt;p&gt;Now the application crashes trying to access grdUpper.RootTable.Columns.GetNamedItem("D"). Please note that the first column is only set to Visible=false, never it's missing.&lt;/p&gt;
&lt;p&gt;Also, this only happens if the first column is resized. If not touching this, it works.&lt;/p&gt;
&lt;p&gt;As an additional bug, in the lower grid the slider to move between different pages doesn't work. Only the &amp;#43; and - buttons move the slider.&lt;/p&gt;
&lt;p&gt;My questions:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Can you confirm these two bugs?&lt;/li&gt;&lt;li&gt;Will there be a hotfix for it?&lt;/li&gt;&lt;li&gt;Do you know of any&amp;nbsp;workaround possible?&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Eric&lt;/p&gt;</description></item><item><title>Update Bug?????</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Mon, 27 Sep 2010 05:22:52 GMT</pubDate><dc:creator>qq397472251</dc:creator><category>WebGrid</category><category>bug</category><category>Update</category><category>focus</category><category>updatebug</category><description>&lt;p&gt;When I Edit some cell,and  the mouse cursor into other row,this way can update the cell!&lt;br /&gt; But I can not &lt;strong&gt;update cell &lt;/strong&gt;by the way(&lt;strong&gt;&lt;strong&gt;see the picture of attech below&lt;/strong&gt;&lt;/strong&gt;)!&lt;br /&gt;&lt;br /&gt;Please  Give me a &lt;strong&gt;solution&lt;/strong&gt;,Thank you!(I think it must be a bug!)&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Bug: Getting "SynchronizeCells failed" when using a columnset while binding via WCF</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Tue, 05 Jan 2010 22:26:39 GMT</pubDate><dc:creator>shawncraig@yahoo.com</dc:creator><category>WebGrid</category><category>bug</category><description>&lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;I ran into a bug. If you try and use a columnset while clientbound to a WCF Service you will receive a "SynchronizeCells failed" error for every row of data returned. I was able to reproduce this by opening the 2009 R2 - WebGridSamples \ ClientBinding_WcfServices.aspx project and setting up a columnset.&lt;/span&gt;&lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;&lt;/span&gt; &lt;/p&gt;
&lt;p class="MsoNormal" style="margin: 0in 0in 0pt"&gt;&lt;span style="font-family: calibri; font-size: 15px"&gt;I'm running Windows 7 x64, UI ASP Suite 2009 R2, VS2008&lt;/span&gt;&lt;/p&gt;
</description></item><item><title>Possible Bug: Hierachial Grid can't expand the first added Node </title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Fri, 11 Sep 2009 13:02:05 GMT</pubDate><dc:creator>Michael</dc:creator><category>Batch Update</category><category>bug</category><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Please check following scenario with &lt;strong&gt;BatchUpdate_Enterprise.aspx&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Run the WebForm&lt;/li&gt;&lt;li&gt;Insert a new Row in Customers&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Don't&lt;/strong&gt; click on AcceptAllChanges&lt;/li&gt;&lt;li&gt;Try to expand the added Node &lt;/li&gt;&lt;li&gt;-&amp;gt; The node will &lt;strong&gt;not expand&lt;/strong&gt;!&lt;/li&gt;&lt;li&gt;Insert a second new Row in Customers&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Don't&lt;/strong&gt; click on AcceptAllChanges&lt;/li&gt;&lt;li&gt;Try to expand the second added Node&lt;/li&gt;&lt;li&gt;-&amp;gt;&amp;nbsp;The node will &lt;strong&gt;expand&lt;/strong&gt;!&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;It always the first added Node after run the WebForm!&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks for a quick fix.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Michael&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Possible Bug: Hierachial Grid RestoreExpandedChildRows </title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Fri, 11 Sep 2009 12:51:11 GMT</pubDate><dc:creator>Michael</dc:creator><category>Batch Update</category><category>bug</category><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Please check following scenario with &lt;strong&gt;BatchUpdate_Enterprise.aspx&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Set &lt;strong&gt;RestoreExpandedChildRows to True&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Run the WebForm&lt;/li&gt;&lt;li&gt;Insert a new Row in &lt;strong&gt;OrderDetails&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;-&amp;gt; I must refresh grid explicit, that I can see the new row.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Thanks for a quick fix.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Michael&lt;/p&gt;</description></item><item><title>Possible Bug: Hierachial Grid hide Foreignkey Column</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Fri, 11 Sep 2009 12:44:53 GMT</pubDate><dc:creator>Michael</dc:creator><category>Batch Update</category><category>bug</category><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Please check following scenario with &lt;strong&gt;BatchUpdate_Enterprise.aspx&lt;/strong&gt;:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;Set &lt;strong&gt;Visible to False&lt;/strong&gt; for Column &lt;strong&gt;OrderID&lt;/strong&gt; in Childtable &lt;strong&gt;OrderDetails&lt;/strong&gt;.&lt;/li&gt;&lt;li&gt;Run the WebForm&lt;/li&gt;&lt;li&gt;Insert a new Row in &lt;strong&gt;OrderDetails&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;-&amp;gt; I get an Error:&amp;nbsp;Column 'OrderID' does not allow nulls!&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;Thanks for a quick fix.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Michael&lt;/p&gt;</description></item><item><title>WebGrid losses style if webgrid.visible = False</title><link>http://www.intersoftsolutions.com/Community/Tags/bug/</link><pubDate>Wed, 26 Aug 2009 14:08:46 GMT</pubDate><dc:creator>GeorgeB</dc:creator><category>bug</category><description>&lt;p&gt;If you hide the WebGrid (webGrid1.visible = false) and then show it again (webGrid1.visible = true) the style is lost.&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>