﻿<?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 - WebCombo - Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</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>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Sun, 13 Mar 2011 23:11:56 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;This issue has been reported by another customer. I have forwarded this issue to our developer teams with wi number 686.&lt;br /&gt;FYI, this issue is not caused by hidden or visible column.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Fri, 11 Mar 2011 08:49:24 GMT</pubDate><dc:creator>fabdellacorte</dc:creator><category>WebCombo</category><description>Hi Handy,&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have run your example (with version 4.0.7200.219) and works but if you change in it, the WebCombo definition, reverse the value of DataTextField with "ContactTitle" instead of "ContractName" :&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&amp;lt;ISWebCombo:WebCombo DataTextField="ContactTitle" ....&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;so the example doesn't work well, it reverses the result of "ContactTitle" and "ContractName"&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;regards&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Fri, 11 Mar 2011 07:47:00 GMT</pubDate><dc:creator>fabdellacorte</dc:creator><category>WebCombo</category><description>&lt;p&gt;Thank you and we will create an example to replicate the issue&lt;br /&gt;&lt;/p&gt;
</description></item><item><title>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Thu, 10 Mar 2011 23:28:30 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hello Fabrizio,&lt;/p&gt;&lt;p&gt;After discussed with our developer, they decide to implement new method. It would get object. We could not change GetSelectedRow(), because it can break the changes for our WebCombo.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Thu, 10 Mar 2011 21:39:33 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hello Fabrizio,&lt;/p&gt;&lt;p&gt;Thank you for concern. For the first point, I would need to discuss with our developer teams.&lt;br /&gt;Currently, it will return &lt;b&gt;DispHTMLTableRow&lt;/b&gt; object and it seems there is misinformation in our documentation.&lt;br /&gt;Since it is not an object, we don't implement GetNamedItem method.&lt;/p&gt;
&lt;p&gt;I could not replicate your last point. Please see my attachment sample. It runs fine when I use &lt;b&gt;Hidden &lt;/b&gt;and &lt;b&gt;RenderOnHidden &lt;/b&gt;as &lt;b&gt;true&lt;/b&gt;.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>Wrong behavior get selected row with fileds hidden</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Wrong-behavior-get-selected-row-with-fileds-hidden/</link><pubDate>Thu, 10 Mar 2011 11:34:47 GMT</pubDate><dc:creator>fabdellacorte</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hi support,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have a combo with multiple columns, same columns visible and same hidden.&lt;/p&gt;
&lt;p&gt;The first point is that method :&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;combo.GetSelectedRow() should return a WebComboRow object and not an DispHTMLTableRow object (like write in documentation), this cause that we have get the cell by number (example combo.GetSelectedRow().cells[2].innerText ) and not by name (combo.GetSelectedRow().GetNamedItem("columnsName")) and this create a problem in our develop.&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;The second point is that if we set same columns at runtime (by behind code in the WebCombo_InitializeLayout method) the columns not visible (by attributes RenderOnHidden="True" Hidden="True"), we don't have right value show in the rest of visible columns, it seems that in the column visible contain the value of previous cell where it is set at runtime these attributes RenderOnHidden="True" Hidden="True".&lt;/p&gt;
&lt;p&gt;May you help in this topic&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;thanks in advanced&lt;/p&gt;
&lt;p&gt;Fabrizio&lt;br /&gt;&lt;/p&gt;</description></item></channel></rss>