﻿<?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 - WebEssentials - ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</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>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Thu, 06 Jan 2011 06:00:57 GMT</pubDate><dc:creator>Harry</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Well yes it helps and thanks for that  but.... &lt;/p&gt;
&lt;p&gt;This is exactly the sort of kunge I want to avoid by using a library like Intersofts. &lt;br /&gt;I want uniformity and I a can't see any reason why ALL of Intersoft's controls shouldn't support PostBackMode  - a point the documenation and advertising makes as a plus point - and to this question or issue you have remained completely silent.&lt;/p&gt;
&lt;p&gt;So once again thanks for your efforts but it doesn't really address the logical inconsistency in the framework.&lt;/p&gt;</description></item><item><title>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Wed, 05 Jan 2011 22:51:46 GMT</pubDate><dc:creator>MarTin</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;You can perform FullPostBack when the ProgressBar reaches 100% by implementing &lt;strong&gt;__doPostBack()&lt;/strong&gt; method in &lt;strong&gt;OnFinished&lt;/strong&gt; Client-side events.&lt;/p&gt;
&lt;p&gt;You can add the following code in &lt;strong&gt;FreshMartFrom.aspx &lt;/strong&gt;sample file to implement FullPostBack:&lt;/p&gt;&lt;pre&gt;function ProgressBar1_OnFinished(controlId, endTime, value, caption)
{
   var progBar = ISGetObject(controlId);

   var duration = progBar.EndTime - progBar.StartTime;

   var btnSect = document.getElementById("btnSection");
   var progSect = document.getElementById("progSection");

   progSect.style.display = "none";
   btnSect.style.display = "";

   document.getElementById("lblStatus").innerHTML = "Save complete in " &amp;#43; (duration / 1000).toFixed(2) &amp;#43; " second(s)";

   __doPostBack("FreshMartForm", "");
}&lt;/pre&gt;
&lt;p&gt;&lt;strong&gt;FreshMartForm&lt;/strong&gt; is the div id of the page. When the ProgressBar finished its loading, it will perform FullPostBack.&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>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Wed, 05 Jan 2011 05:52:16 GMT</pubDate><dc:creator>Harry</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Yes indeed I understand how FlyPostBack works and I can see that yes I can do these small changes but I want a FullPostBack to occur when the ProgressBar reaches 100%.&lt;/p&gt;
&lt;p&gt;It is more logical (as the documenation suggests) for ALL Intersoft's ASP .NET components to support both full and fly PostBack - it is a great shame that this is not the case as  it would be a compelling reason to use them.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item><item><title>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Tue, 04 Jan 2011 21:03:08 GMT</pubDate><dc:creator>MarTin</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;What I mean is eventhough WebProgressBar is running on FlyPostBack mode, you are still able to invoke Server-side events. For example, when you change the progress interval or value, you can still perform Server-side events such as ProgressInterval, ValueChanged, Start.&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>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Tue, 04 Jan 2011 04:55:56 GMT</pubDate><dc:creator>Harry</dc:creator><category>webProgressbar</category><description>&lt;p&gt;"But you are still able to run WebProgressBar in FullPostback mode by using the Server-side event provided in its properties."&lt;/p&gt;
&lt;p&gt;How exactly - I'm using the server side events and the only option is for FlyPostBack?&lt;/p&gt;</description></item><item><title>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Tue, 04 Jan 2011 02:18:34 GMT</pubDate><dc:creator>MarTin</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Yes, we would like to apologize for the incorrect information in the documentation. We will surely update the documentation for future reference.&lt;/p&gt;
&lt;p&gt;When you display WebProgressBar, it will run on the FlyPostback. But you are still able to run WebProgressBar in FullPostback mode by using the Server-side event provided in its properties.&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>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Tue, 04 Jan 2011 02:10:06 GMT</pubDate><dc:creator>Harry</dc:creator><category>webProgressbar</category><description>&lt;p&gt;can the documentation be updated to reflect this - wastes a lot of time trying to find facilities which actually dont exist.&lt;/p&gt;
&lt;p&gt;Also why "naturally" I want a full postback on the finished event?&lt;/p&gt;
&lt;p&gt;It would be more logical - again as the documentation suggests - to support both bostback modes on all components&lt;/p&gt;</description></item><item><title>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Mon, 03 Jan 2011 23:44:17 GMT</pubDate><dc:creator>MarTin</dc:creator><category>webProgressbar</category><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Naturally, WebProgressBar only supports FlyPostBack.&lt;/p&gt;
&lt;p&gt;However, we also provide Server-side events which you can use to perform Postback.&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>ProgressBar Postback mode</title><link>http://www.intersoftsolutions.com/Community/WebEssentials/ProgressBar-Postback-mode/</link><pubDate>Mon, 03 Jan 2011 08:32:36 GMT</pubDate><dc:creator>Harry</dc:creator><category>webProgressbar</category><description>&lt;p&gt;The documenation says:&lt;/p&gt;
&lt;p&gt;&lt;em&gt;&amp;nbsp;Postback in WebProgressBar is triggered by several occasions, such as: on after certain interval passed, finished progress bar, or when the progress bar�??s value has changed.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Like the other WebEssential controls, WebProgressBar offers two postback options, FullPostBack and FlyPostBack; by simply set the &lt;strong&gt;PostBackMode&lt;/strong&gt; property.&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;Can anyone tell me where the PostBackMode property is in the WebProgressBar?&lt;/p&gt;
&lt;p&gt;Does the fact that it is missing mean it only supports FlyPostBack?&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description></item></channel></rss>