﻿<?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 - How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</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>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Mon, 18 Nov 2013 22:47:01 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I run Hans’s sample on my local end (view the sample in IE 10 browser) and find that everything worked smoothly. The result box (which shows the list) was accessed without any issues.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: rgb(31, 73, 125);"&gt;I enclosed the sample for reference. Please have the attached sample evaluated on your end and let us know if you have different result.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Fri, 15 Nov 2013 16:33:53 GMT</pubDate><dc:creator>craig.bennett@vc3.com</dc:creator><description>&lt;p&gt;Hi Hans,&lt;/p&gt;&lt;p&gt;I downloaded your sample and am unable to get the code to work.  When I click the down arrow on the WebCombo, I just get an empty box with the "loading..." text at the bottom.  Any ideas?&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Tue, 20 Nov 2012 02:57:24 GMT</pubDate><dc:creator>macedes</dc:creator><description>&lt;p&gt;i activated the multiplecolums and it worked. thanks anyway&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Mon, 19 Nov 2012 21:13:27 GMT</pubDate><dc:creator>Hans</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Thank you for your reply.&lt;br /&gt;Yes, it is.&lt;br /&gt;Please try to modify code in Button1_Click server side event to this code below:&lt;/p&gt;&lt;pre&gt;protected void Button1_Click(object sender, EventArgs e)
{
    WebCombo1.DataSource = allUsers;
    WebCombo1.DataTextField = "name";
    WebCombo1.DataValueField = "id";
    WebCombo1.LayoutSettings.ComboMode = ISNet.WebUI.WebCombo.Mode.MultipleColumns;
    WebCombo1.DataBind();
        
    WebCombo1.Columns[0].BaseFieldName = "id";
    WebCombo1.Columns[0].Name = "id";
    WebCombo1.Columns[0].Width = 100;
    WebCombo1.Columns[1].BaseFieldName = "name";
    WebCombo1.Columns[1].Name = "name";
    WebCombo1.Columns[1].Width = 100;
    WebCombo1.Columns[2].BaseFieldName = "email";
    WebCombo1.Columns[2].Name = "email";
    WebCombo1.Columns[2].Width = 100;
}
&lt;/pre&gt;
&lt;p&gt;Hope this helps.&lt;br /&gt;Regards,&lt;br /&gt;&lt;br /&gt;Hans.&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Mon, 19 Nov 2012 04:57:11 GMT</pubDate><dc:creator>macedes</dc:creator><description>&lt;p&gt;thank you it works!!&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;is it possible to show multiple rows in one webcombo? like this:&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;ID           Name                Email                &lt;/p&gt;
&lt;p&gt;5             Max                   max@google.com&lt;/p&gt;
&lt;p&gt;6             Peter                  peter@aol.com&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Mon, 19 Nov 2012 02:02:45 GMT</pubDate><dc:creator>Hans</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Yes, that is possible.&lt;br&gt;&lt;/br&gt;I made a simple WebCombo sample that load data from list.&lt;br&gt;&lt;/br&gt;Please kindly have on my sample and let me know your reponse.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br&gt;&lt;/br&gt;Hans.&lt;br&gt;&lt;/br&gt;&lt;/p&gt;</description></item><item><title>How can i load a list in WebCombo?</title><link>http://www.intersoftsolutions.com/Community/WebCombo/How-can-i-load-a-list-in-WebCombo/</link><pubDate>Fri, 16 Nov 2012 09:42:20 GMT</pubDate><dc:creator>macedes</dc:creator><description>&lt;p&gt;Hello there, i saved some data from active directory in a list. how can i load a list or array in webcombo. is that possible? &lt;/p&gt;</description></item></channel></rss>