﻿<?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 - Clientside binding not working</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Clientside-binding-not-working/</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>Clientside binding not working</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Clientside-binding-not-working/</link><pubDate>Thu, 15 Dec 2016 08:51:44 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Sorry for the delay in sending this.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I have prepared a working WebApplication created based on your provided code. Please find ClientBindingAndAutoComplete.zip in the attachment and let me know whether it helps or not.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Clientside binding not working</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Clientside-binding-not-working/</link><pubDate>Fri, 11 Nov 2016 09:44:50 GMT</pubDate><dc:creator>sjain</dc:creator><description>&amp;nbsp;Hi Yudy, &lt;br&gt; Thanks for your detail reply. It is still not working after making suggested change. I also add proxy testing method in apsx.cs class which is working as expected. I believe that there is some setting which I am missing. &lt;br&gt;&lt;br&gt;I again visited http://www.intersoftsolutions.com/Support/WebCombo/Tutorial/Text/Configure-WebCombo-To-Retrieve-Data-From-Web-Service/ . I did not see any difference in given example and my sample except retrieval&amp;nbsp; of Data from Northwind database.&lt;br&gt;&lt;br&gt;Would you look on code provided in attachment and point out the wrong setting for binding webcombo.&lt;br&gt;&lt;br&gt;thanks and regards&lt;br&gt;Sachin&lt;br&gt;</description></item><item><title>Clientside binding not working</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Clientside-binding-not-working/</link><pubDate>Mon, 07 Nov 2016 05:46:48 GMT</pubDate><dc:creator>yudi</dc:creator><description>&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Could you please try to add the ScriptService attribute for the WebService1 class (in WebService1.asmx.cs)? Following snippet code shows how:&lt;/span&gt;&lt;/p&gt;&lt;pre&gt;/// &amp;lt;summary&amp;gt;/// Summary description for WebService1/// &amp;lt;/summary&amp;gt;
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
[System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
	[WebMethod]
	public List&amp;lt;Item&amp;gt; GetItemList()
	{
		...
	}
}
&lt;/pre&gt;&lt;br&gt;&lt;br&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;but for some reason webcombo only shows loading&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;I suspect that WebCombo keep showing loading indicator because the WebService method is not allowed to be called. Adding the ScriptService attribute for the WebService1 class should resolve the problem.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;If the problem still persist, please feel free to let me know.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;and onvalue change server event (OnValueChanged) need to fire to handle&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;OnValueChanged event handler is not fired when WebCombo is bind to WebService. For more detail, please kindly check "The Differences with Server Data Binding" section in &lt;a href="http://developer.intersoftsolutions.com/display/WebUI/Client+Data+Binding" target="_blank"&gt;WebCombo online documentation&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;To achieve the same post-processing in client binding mode, handle the OnAfterItemSelected client-side event.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Hope this helps.&lt;/span&gt;&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;span&gt;Webcombo need to support autocomplete also.&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;&lt;span style="color: #1f497d;"&gt;Auto complete entry mode works on WebCombo with client-binding (to WebService) enabled. Check out how the feature works on the &lt;strong&gt;Country&lt;/strong&gt; WebCombo in &lt;a href="http://live.intersoftsolutions.com/cs/WebCombo/ClientBinding_WebService.aspx?noframe=1" target="_blank"&gt;this&lt;/a&gt; live sample page of WebCombo.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>Clientside binding not working</title><link>http://www.intersoftsolutions.com/Community/WebCombo/Clientside-binding-not-working/</link><pubDate>Fri, 28 Oct 2016 12:21:29 GMT</pubDate><dc:creator>sjain</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt; Viewing online documentation link (http://www.intersoftsolutions.com/Support/WebCombo/Tutorial/Text/Configure-WebCombo-To-Retrieve-Data-From-Web-Service/ ) created a sample page with autocomplete feature; but for some reason webcombo only shows loading. &lt;br&gt;&lt;/p&gt;&lt;p&gt;I am attaching aspx, aspx.cs and asmx.cs file also for your verification. May be some properties need to handle differently then current implementation. &lt;br&gt;&lt;/p&gt;&lt;p&gt;Requirement must bind from clientside (using webservice) and onvalue change server event (OnValueChanged) need to fire to handle . Webcombo need to support autocomplete also. &lt;br&gt;&lt;/p&gt;&lt;p&gt;regards&lt;/p&gt;&lt;p&gt;Sachin&lt;br&gt;&lt;/p&gt;&lt;p&gt;&lt;br&gt;&lt;/p&gt;</description></item></channel></rss>