﻿<?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 - 2 Webcombos with the same Table, how to synchronize the selection ? </title><link>http://www.intersoftsolutions.com/Community/WebCombo/2-Webcombos-with-the-same-Table-how-to-synchronize-the-selection-/</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>2 Webcombos with the same Table, how to synchronize the selection ? </title><link>http://www.intersoftsolutions.com/Community/WebCombo/2-Webcombos-with-the-same-Table-how-to-synchronize-the-selection-/</link><pubDate>Wed, 17 Apr 2013 03:53:52 GMT</pubDate><dc:creator>Hans</dc:creator><description>Hello,&lt;br /&gt;&lt;br /&gt;I have a work around / solution for your current scenario.&lt;br /&gt;I made simple WebCombo sample based on your scenario.&lt;br /&gt;I add two WebCombo to the sample and bind to access data source (Northwind.mdb database and Shippers table).&lt;br /&gt;&lt;br /&gt;In the first WebCombo, I set DataTextField property to "ShipperID" &amp;amp; DataValueField property to "CompanyName".&lt;br /&gt;In the second WebCombo, I set DataTextField property to " CompanyName " &amp;amp; DataValueField property to "CompanyName".&lt;br /&gt;&lt;br /&gt;And here’s the example snippet code that I add in OnAfterItemSelected client side event:&lt;br /&gt;&lt;pre&gt;function WebCombo1_OnAfterItemSelected(){
    var WebCombo1 = ISGetObject("WebCombo1");
    var WebCombo2 = ISGetObject("WebCombo2");
    var value = WebCombo1.Value;
    WebCombo2.SetText(value);
    WebCombo2.LoadValue();
}&lt;/pre&gt;&lt;br /&gt;Please kindly have review on my sample as well to see the result.&lt;br /&gt;&lt;br /&gt;Thank you very much.&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Hans.&lt;br /&gt;
</description></item><item><title>2 Webcombos with the same Table, how to synchronize the selection ? </title><link>http://www.intersoftsolutions.com/Community/WebCombo/2-Webcombos-with-the-same-Table-how-to-synchronize-the-selection-/</link><pubDate>Tue, 16 Apr 2013 09:49:00 GMT</pubDate><dc:creator>macedes</dc:creator><description>&lt;p&gt;Hello i have 2 Webcombos whic are accessing to a table which look like this:&lt;/p&gt;&lt;p&gt;Name:             Email:&lt;/p&gt;
&lt;p&gt;Eray                 &lt;a href="mailto:eray@solution.com"&gt;eray@solution.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Sebastian         &lt;a href="mailto:sebastian@solution.com"&gt;sebastian@solution.com&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;the first Webcombo shows me all the names, the second Webcombo shows me all the Email Adresses. &lt;/p&gt;
&lt;p&gt;I want to select the Name in the first Webcombo and it should automatically select its email adress in the second webcombo.&lt;/p&gt;
&lt;p&gt;how can i do that? &lt;/p&gt;
&lt;p&gt;i tried this but it doesn't work:&lt;/p&gt;&lt;pre&gt;        function VeranstalterCombo_OnAfterItemSelected() {
            var VeranstalterCombo = ISGetObject("VeranstalterCombo");
            var VeranstalterEmailCombo = ISGetObject("VeranstalterEmailCombo");
            
            VeranstalterEmailCombo.SetSelectedIndex(VeranstalterCombo.SelectedIndex);
            
            return true;
        }&lt;/pre&gt;</description></item></channel></rss>