﻿<?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 - WebDesktop - How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</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 to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Mon, 21 Feb 2011 07:10:25 GMT</pubDate><dc:creator>yudi</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;Please kindly check following things in your scenario.&lt;/span&gt;&lt;/p&gt;
&lt;ul style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;&lt;li&gt;Ensure that the &lt;strong&gt;EnableUIMode&lt;/strong&gt; and &lt;strong&gt;ServiceUrl&lt;/strong&gt; property of WebFlyPostBackManager has been set properly.&lt;/li&gt;&lt;li&gt;Ensure the &lt;strong&gt;FlyPostBackSettings (PostControlState; PostHiddenFields; PostInputControls; and or PostViewState)&lt;/strong&gt; has been set properly.&lt;/li&gt;&lt;li&gt;Ensure that &lt;strong&gt;WebFlyPostBackListener&lt;/strong&gt; has been added into the Page_Load event.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;span style="font-family: 'segoe ui','sans-serif'; color: #1f497d; font-size: 9pt"&gt;If the issue still persists we would need you to elaborate on your specific scenario and possibly give us a running simple sample and a step-by-step guide that we can use to observe the problematic behavior.&lt;/span&gt;&lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Fri, 18 Feb 2011 07:01:42 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I will need more time to investigate your issue. I will get back to you as soon as I get the update.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Thu, 17 Feb 2011 11:38:14 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;I am using the WebFlyPostBack manager onto my form as being explained in the sample for which you gave the link.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Now in my senario when i set the Value of WebCombo on FlyPostback and Say DataBind e.g.&lt;/p&gt;&lt;pre&gt;protected void cmbPaints_ValueChanged(object sender, ISNet.WebUI.WebCombo.ValueChangedEventArgs e)
{
     txtRed.Text = "#00000";
     txtRed.RequiresUIRefresh = true;
     cmbColor.Value = "4";
     cmbColor.RequiresUIRefresh = true;
     cmbColor.DataBind();
}&lt;/pre&gt;




Now the cmbColor WebCombo's DataSource is Set using the InitializeDataSource event and columns are defined using the InitializaLayout Event. 
&lt;p&gt;The textbox is updated without any problem but the WebCombo's value is not getting Set. &lt;/p&gt;
&lt;p&gt;Can you please tell me what could have been the problem? &lt;/p&gt;
&lt;p&gt;  &lt;/p&gt;
&lt;p&gt;Thanks, &lt;/p&gt;
&lt;p&gt;Huzefa Katwarawala &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Tue, 08 Feb 2011 03:13:33 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;ServiceUrl is a property where you set the page that has FlyPostBack manager logic.&lt;/p&gt;
&lt;p&gt;Therefore, you should set ServiceUrl to the page where you implement FlyPostBack manager.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Mon, 07 Feb 2011 04:21:49 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;Hi Martin,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks for the Sample.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Can you please tell me what should be my serviceUrl if i am using Routing in my WebApplication?&lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Mon, 07 Feb 2011 02:22:15 GMT</pubDate><dc:creator>MarTin</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p&gt;Hello Huzefa,&lt;/p&gt;
&lt;p&gt;We do have a sample that implement this kind of scenario. When you select a value from WebCombo, it will set all values in other controls and update the UI as well.&lt;/p&gt;
&lt;p&gt;You can find the sample in &lt;a href="http://live.intersoftpt.com/cs/WebDesktop/WebFlyPostBackManagerAJAXoverIntersoftControl.aspx?noframe=1&amp;amp;path=/WebDesktop/AJAX%20Manager" target="_blank"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Hope this helps.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;Thank you.&lt;/p&gt;</description></item><item><title>How to use WebFlyPostbackManager to update UI</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-use-WebFlyPostbackManager-to-update-UI/</link><pubDate>Wed, 02 Feb 2011 03:51:42 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebCombo</category><category>WebDesktop</category><description>&lt;p /&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have a situtation where i want to make updates to UI once a value from WebCombo is selected.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Example: When i select a value in Webcombo then a flypostback should happen to server, then on server side i set the value of other WebCombo or texbox.&lt;/p&gt;
&lt;p&gt;Once i set the values on server then the UI should be updated accordingly.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Also i am using Routing in my forms and want to use FormMode for PostbackType&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;How you please tell me how can i achieve this?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Huzefa&lt;/p&gt;
&lt;p /&gt;</description></item></channel></rss>