﻿<?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 Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</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 Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Wed, 01 Jun 2011 00:15:10 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hello Rudy,&lt;/p&gt;&lt;p&gt;WebGrid has Ajax mechanism itself. Please remember that WebFlyPostBackManager has similiar functionality with AjaxUpdatePanel. One of its function is to prevent the page FullPostBack in UI and persist all the updates with it.&lt;br /&gt;However, in WebGrid, if you only use FlyPostBack process in the WebGrid, using WebGrid ClientAction might be enough. In this scenario, the page also does not require FullPostBack at all.&lt;br /&gt;&lt;br /&gt;You also don't need AspNetAjaxSettings all the time. This only additional settings to ensure missing styles and scripts during the update. It also would help some update states.&lt;br /&gt;If the changes can persist well without those settings, you can comment out the code.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy &lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Tue, 31 May 2011 06:31:43 GMT</pubDate><dc:creator>kurry</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Thank you. It does help.&lt;/p&gt;
&lt;p&gt;I tried removing WebFlyPostbackManager and the listener, and this code piece that you gave for the earlier example and it still worked.&lt;/p&gt;&lt;pre style="font-family: consolas; background: white; color: black; font-size: 13px"&gt;&lt;span style="color: blue"&gt;With&lt;/span&gt;&amp;nbsp;WebGrid1
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: green"&gt;'.AspNetAjaxSettings.CreatedAtRuntime = True&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: green"&gt;'.AspNetAjaxSettings.UpdateControlScripts = True&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;span style="color: green"&gt;'.AspNetAjaxSettings.UpdateControlStyles = True&lt;/span&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.ClientAction.RefreshModifiedControls()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;.ClientAction.RenderControl(Label1)
&lt;span style="color: blue"&gt;End&lt;/span&gt;&amp;nbsp;&lt;span style="color: blue"&gt;With&lt;/span&gt;&lt;/pre&gt;
&lt;p&gt;Can you tell me what is the role of WebFlyPostbackManager and the aspnetajaxsettings here? Do I need them?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Tue, 31 May 2011 04:59:53 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hi,&lt;/p&gt;&lt;p&gt;You will need to have additional code before set the text label. Hope this helps.&lt;/p&gt;
&lt;p /&gt;&lt;pre&gt; WebGrid1.ClientAction.RefreshModifiedControls();
 WebGrid1.ClientAction.RenderControl(Label1);&lt;/pre&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p /&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Tue, 31 May 2011 03:22:25 GMT</pubDate><dc:creator>kurry</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hi handy,&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt;This method does not seem to work when we're on WebGrid UpdateRow event.&lt;/p&gt;
&lt;p&gt;I have attached a modified sample for you to look at. Real-life situation is I need to update a total when users update a value in the grid. I cannot use the Grid's total/aggregate feature. They are not suitable for the purpose I am trying to achieve.&lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Mon, 21 Feb 2011 05:05:20 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Sure. I write back (update) the label after choose an Item in WebCombo. It works well by using WebFlyPostBackManager. If you have a trouble, please provide a simple runable sample that replicates the issue. I will try to modify and make it work for you.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Mon, 21 Feb 2011 00:47:33 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hello Handy,&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Can you please explain me what you are doing in this sample you provided?&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Huzefa Katwarawala&lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Sun, 20 Feb 2011 21:15:20 GMT</pubDate><dc:creator>handy@intersoftpt.com</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;Please see my attached sample. Sometimes, it requires more settings for non-inetrsoft controls such as ASP.Net control.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Handy&lt;/p&gt;</description></item><item><title>How to Update Non-Intersoft controls in WebFlyPostback</title><link>http://www.intersoftsolutions.com/Community/WebDesktop/How-to-Update-Non-Intersoft-controls-in-WebFlyPostback/</link><pubDate>Sat, 19 Feb 2011 11:01:24 GMT</pubDate><dc:creator>huzzy143</dc:creator><category>WebDesktop</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;I have a Label control which i want to update wih other intersoft controls. But it seems that the Non-intersoft controls are not getting updated after Flypostback. Can you please tell me how can i achive this??&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Huzefa Katwarawala&lt;/p&gt;</description></item></channel></rss>