<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Olaf's Thoughts About Development &#187; PageMode</title>
	<atom:link href="http://www.monien.net/blog/index.php" rel="self" type="application/rss+xml" />
	<link>http://www.monien.net/blog</link>
	<description>Delphi Programming, .NET Philosophy, Web development and more ...</description>
	<lastBuildDate>Mon, 14 Mar 2011 15:59:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Disabling &#8220;Loading Animation&#8221; in IntraWeb PageModus</title>
		<link>http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/</link>
		<comments>http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/#comments</comments>
		<pubDate>Mon, 04 Aug 2008 10:56:12 +0000</pubDate>
		<dc:creator>Olaf Monien</dc:creator>
				<category><![CDATA[Delphi]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IntraWeb]]></category>
		<category><![CDATA[ISAPI]]></category>
		<category><![CDATA[PageMode]]></category>
		<category><![CDATA[ServerController]]></category>

		<guid isPermaLink="false">http://www.monien.net/blog/?p=189</guid>
		<description><![CDATA[To disable the &#8220;loading animation&#8221;  which has been introduced with IntraWeb 9.0, and which shows up when the user clicked a button and is waiting for the page to re-load you usually just need to set an option in your application&#8217;s ServerController. ServerController.ShowLoadingAnimation := false If you are using IntraWeb&#8217;s PageMode then there is problem [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.monien.net/blog/wp-content/uploads/2008/08/loading.gif"><img class="alignnone size-full wp-image-190" title="loading" src="http://www.monien.net/blog/wp-content/uploads/2008/08/loading.gif" alt="" width="32" height="32" /></a> To disable the &#8220;loading animation&#8221;  which has been introduced with IntraWeb 9.0, and which shows up when the user clicked a button and is waiting for the page to re-load you usually just need to set an option in your application&#8217;s ServerController.<span id="more-189"></span></p>
<pre class="brush: delphi">
ServerController.ShowLoadingAnimation := false
</pre>
<p>If you are using IntraWeb&#8217;s PageMode then there is problem though: PageModus has no explicit ServerController.  Instead, an instance of TIWServerControllerBase is created when TWebModule is created. Inother words to change an option such as ShowLoadingAnimation you have to do that in your PageMode&#8217;s TWebModule:</p>
<pre class="brush: delphi">
uses

IWGlobal ...

procedure TWebModule1.WebModuleCreate(Sender: TObject);
begin
GServerController.ShowLoadingAnimation := false;
end;
</pre>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-twitter">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=%24%7Btitle%7D+-+%24%7Bshort_link%7D&amp;service=7&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="shr-comfeed">
			<a href="http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=2&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=3&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=257&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Post on Google Buzz">Post on Google Buzz</a>
		</li>
		<li class="shr-reddit">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=40&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="shr-technorati">
			<a href="http://www.shareaholic.com/api/share/?title=Disabling+%22Loading+Animation%22+in+IntraWeb+PageModus&amp;link=http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/&amp;notes=%20To%20disable%20the%20%22loading%20animation%22%C2%A0%20which%20has%20been%20introduced%20with%20IntraWeb%209.0%2C%20and%20which%20shows%20up%20when%20the%20user%20clicked%20a%20button%20and%20is%20waiting%20for%20the%20page%20to%20re-load%20you%20usually%20just%20need%20to%20set%20an%20option%20in%20your%20application%27s%20ServerController.%0D%0A%0D%0A%5Bsourcecode%20language%3D%27Delphi%27%5D%0D%0AServerControll&amp;short_link=&amp;shortener=tinyurl&amp;shortener_key=&amp;v=1&amp;apitype=1&amp;apikey=8afa39428933be41f8afdb8ea21a495c&amp;source=Shareaholic&amp;template=&amp;service=10&amp;tags=&amp;ctype=" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
</ul><div style="clear: both;"></div><div class="shr-getshr" style="visibility:hidden;font-size:10px !important"><a target="_blank" href="http://www.shareaholic.com/?src=pub">Get Shareaholic</a></div><div style="clear: both;"></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.monien.net/blog/index.php/2008/08/disabling-loading-animation-in-intraweb-pagemodus/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

