﻿<?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 - Retrieving selected row column values</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Retrieving-selected-row-column-values/</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>Retrieving selected row column values</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Retrieving-selected-row-column-values/</link><pubDate>Fri, 05 Nov 2010 03:58:09 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I'm afraid that WebCombo 2.0 has now been discontinued for several years and there are not going to be any further updates for it. We have introduced WebCombo 4.0 that has been enhanced to provide more powerful features to implement user scenario without any hassle.&lt;/p&gt;
&lt;p&gt;However, I have attached a sample file that used WebCombo 4.0 for your reference.&lt;/p&gt;
&lt;p&gt;By default, WebCombo only retrieves value in DataTextField and DataValueField. By using &lt;strong&gt;OnAfterItemSelected&lt;/strong&gt; Client-side event, you can configure WebCombo to retrieve the values in each column when you are in multiple columns mode.&lt;/p&gt;
&lt;p&gt;Use the following Javascript code to retrieve values in each column:&lt;/p&gt;&lt;pre&gt;function WebCombo1_OnAfterItemSelected(controlId)
{
   var WebCombo1 = ISGetObject(controlId);
   var SelectedRow = WebCombo1.GetSelectedRow();
   var CellLength = SelectedRow.cells.length;

   for (var i = 0; i &amp;lt; CellLength; i&amp;#43;&amp;#43;) 
   {
      alert(SelectedRow.cells[i].innerText);
   }
   return true;
}&lt;/pre&gt;
&lt;p&gt;Hope this helps. Thank you.&lt;/p&gt;</description></item><item><title>Retrieving selected row column values</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Retrieving-selected-row-column-values/</link><pubDate>Thu, 04 Nov 2010 11:58:04 GMT</pubDate><dc:creator>OFM_IS</dc:creator><category>WebCombo</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I'm using an older version of WebCombo (2.0.*) and I need to obtain the values in each column of the selected row. I can only seem to retrieve the values in the DataTextField and DataValueField, even though there are 4&amp;#43; columns showing.&lt;/p&gt;</description></item></channel></rss>