<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: 4 ASP.NET AJAX JavaScript UI methods you should learn</title>
	<atom:link href="http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/feed/" rel="self" type="application/rss+xml" />
	<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/</link>
	<description>ASP.NET and AJAX code, ideas, and examples.</description>
	<lastBuildDate>Wed, 16 May 2012 23:02:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Abdul Rahman</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-46200</link>
		<dc:creator>Abdul Rahman</dc:creator>
		<pubDate>Sat, 01 Oct 2011 07:20:19 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-46200</guid>
		<description>Good thing.</description>
		<content:encoded><![CDATA[<p>Good thing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#124; OOP &#8211; Object Oriented Programing</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-38633</link>
		<dc:creator>Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#124; OOP &#8211; Object Oriented Programing</dc:creator>
		<pubDate>Tue, 04 May 2010 05:49:30 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-38633</guid>
		<description>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#8217;s client-side JavaScript Helper Methods. [...]</description>
		<content:encoded><![CDATA[<p>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#8217;s client-side JavaScript Helper Methods. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-35337</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Tue, 19 May 2009 17:25:06 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-35337</guid>
		<description>It&#039;s correct as is.  loc.x would be the &lt;em&gt;original&lt;/em&gt; position in thise case, not the current.  So, the offset would need to increment.

Of course, you could use getLocation() to check its location during each iteration and then increment by 1 instead.  Either would work (though, I&#039;d generally avoid the 74 unnecessary getLocation() calls).</description>
		<content:encoded><![CDATA[<p>It&#8217;s correct as is.  loc.x would be the <em>original</em> position in thise case, not the current.  So, the offset would need to increment.</p>
<p>Of course, you could use getLocation() to check its location during each iteration and then increment by 1 instead.  Either would work (though, I&#8217;d generally avoid the 74 unnecessary getLocation() calls).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: piano</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-35336</link>
		<dc:creator>piano</dc:creator>
		<pubDate>Tue, 19 May 2009 17:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-35336</guid>
		<description>for (i = 1; i &lt;= 75; i++)
{
  Sys.UI.DomElement.setLocation($get(&#039;SomeDiv&#039;), loc.x + i, loc.y);
}

Wouldnt this move the location 1 pixel...And then 2, then 3 up to 75. 

loc.x + 1 is probably the intention.</description>
		<content:encoded><![CDATA[<p>for (i = 1; i &lt;= 75; i++)<br />
{<br />
  Sys.UI.DomElement.setLocation($get(&#8216;SomeDiv&#8217;), loc.x + i, loc.y);<br />
}</p>
<p>Wouldnt this move the location 1 pixel&#8230;And then 2, then 3 up to 75. </p>
<p>loc.x + 1 is probably the intention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tanvir</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-20979</link>
		<dc:creator>tanvir</dc:creator>
		<pubDate>Tue, 29 Apr 2008 09:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-20979</guid>
		<description>hi.. good functions.
but i&#039;ve spoteed a mistake in ur animation code. we need to use setTimeout or something to make the animation really happened.

in ur code the end result will be just loc.x + 75 instead of the actuall movement :)</description>
		<content:encoded><![CDATA[<p>hi.. good functions.<br />
but i&#8217;ve spoteed a mistake in ur animation code. we need to use setTimeout or something to make the animation really happened.</p>
<p>in ur code the end result will be just loc.x + 75 instead of the actuall movement :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#171; .NET Framework tips</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6077</link>
		<dc:creator>Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#171; .NET Framework tips</dc:creator>
		<pubDate>Sat, 26 Jan 2008 22:29:01 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6077</guid>
		<description>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#8217;s client-side JavaScript Helper Methods. [...]</description>
		<content:encoded><![CDATA[<p>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#8217;s client-side JavaScript Helper Methods. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enlaces de Enero: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#171; Thinking in .NET</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6067</link>
		<dc:creator>Enlaces de Enero: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS &#171; Thinking in .NET</dc:creator>
		<pubDate>Sat, 26 Jan 2008 15:22:53 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6067</guid>
		<description>[...] Cuatro mÃ©todos JavaScript que deberÃ­amos saber: Dave Ward tiene otro post increÃ­ble en su serie sobre mÃ©todos javascript para ASP.NET AJAX. [...]</description>
		<content:encoded><![CDATA[<p>[...] Cuatro mÃ©todos JavaScript que deberÃ­amos saber: Dave Ward tiene otro post increÃ­ble en su serie sobre mÃ©todos javascript para ASP.NET AJAX. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave Ward</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6052</link>
		<dc:creator>Dave Ward</dc:creator>
		<pubDate>Fri, 25 Jan 2008 21:34:51 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6052</guid>
		<description>You can use window.resizeTo(x, y) to do that.</description>
		<content:encoded><![CDATA[<p>You can use window.resizeTo(x, y) to do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: moooo</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6051</link>
		<dc:creator>moooo</dc:creator>
		<pubDate>Fri, 25 Jan 2008 21:08:36 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6051</guid>
		<description>anyway you can set the browser viewable area? thanks</description>
		<content:encoded><![CDATA[<p>anyway you can set the browser viewable area? thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS - ScottGu's Blog</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6032</link>
		<dc:creator>Jan 24th Links: ASP.NET, ASP.NET AJAX, Visual Studio, .NET, IIS - ScottGu's Blog</dc:creator>
		<pubDate>Fri, 25 Jan 2008 07:08:34 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-6032</guid>
		<description>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#039;s client-side JavaScript Helper Methods. [...]</description>
		<content:encoded><![CDATA[<p>[...] Four ASP.NET AJAX JavaScript UI Methods You Should Learn: Dave Ward has another great post in his series about ASP.NET AJAX&#8217;s client-side JavaScript Helper Methods. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ç¶²æ‘˜ &#124; äºžç‰¹è˜­æ??æ–¯ - .NET Atlantis</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5622</link>
		<dc:creator>ç¶²æ‘˜ &#124; äºžç‰¹è˜­æ??æ–¯ - .NET Atlantis</dc:creator>
		<pubDate>Sat, 19 Jan 2008 05:26:50 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5622</guid>
		<description>[...] - 4 ASP.NET AJAX JavaScript UI methods you should learn http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/ [...]</description>
		<content:encoded><![CDATA[<p>[...] &#8211; 4 ASP.NET AJAX JavaScript UI methods you should learn <a href="http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/" rel="nofollow">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W&#246;chentliche Rundablage: ASP.NET MVC, ASP.NET 3.5, Data Services, C# 3.0, WPF, System.AddIn, AJAX&#8230; &#124; Code-Inside Blog</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5313</link>
		<dc:creator>W&#246;chentliche Rundablage: ASP.NET MVC, ASP.NET 3.5, Data Services, C# 3.0, WPF, System.AddIn, AJAX&#8230; &#124; Code-Inside Blog</dc:creator>
		<pubDate>Mon, 14 Jan 2008 19:59:06 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5313</guid>
		<description>[...] Die AJAX Client API (oder Microsoft AJAX Library?) hat einige kleine Helferlein - hier sind 4 weitere Tipps erwÃ¤hnt: 4 ASP.NET AJAX JavaScript UI methods you should learn [...]</description>
		<content:encoded><![CDATA[<p>[...] Die AJAX Client API (oder Microsoft AJAX Library?) hat einige kleine Helferlein &#8211; hier sind 4 weitere Tipps erwÃ¤hnt: 4 ASP.NET AJAX JavaScript UI methods you should learn [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gruby</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5285</link>
		<dc:creator>Gruby</dc:creator>
		<pubDate>Mon, 14 Jan 2008 13:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5285</guid>
		<description>Great! This getBounds() function is so useful. Keep 
on giving us such useful pieces of code! :) thx</description>
		<content:encoded><![CDATA[<p>Great! This getBounds() function is so useful. Keep<br />
on giving us such useful pieces of code! :) thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amr Elsehemy</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5123</link>
		<dc:creator>Amr Elsehemy</dc:creator>
		<pubDate>Sat, 12 Jan 2008 19:04:29 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5123</guid>
		<description>Some valuable tips, kicked and subscribed keep on it.</description>
		<content:encoded><![CDATA[<p>Some valuable tips, kicked and subscribed keep on it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rascunho &#187; Blog Archive &#187; links for 2008-01-10</title>
		<link>http://encosia.com/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5011</link>
		<dc:creator>rascunho &#187; Blog Archive &#187; links for 2008-01-10</dc:creator>
		<pubDate>Thu, 10 Jan 2008 20:19:16 +0000</pubDate>
		<guid isPermaLink="false">http://encosia.com/2008/01/09/4-aspnet-ajax-javascript-ui-functions-you-should-learn/#comment-5011</guid>
		<description>[...] 4 ASP.NET AJAX JavaScript UI methods you should learn &#124; Encosia Specifically, Iâ€™m going to show you examples of using addCssClass, getBounds, getLocation, and setLocation to accomplish a few client side UI tasks. (tags: encosia.com 2008 mes0 dia10 at_tecp ASP.NET javascript blog_post **** ajax) [...]</description>
		<content:encoded><![CDATA[<p>[...] 4 ASP.NET AJAX JavaScript UI methods you should learn | Encosia Specifically, Iâ€™m going to show you examples of using addCssClass, getBounds, getLocation, and setLocation to accomplish a few client side UI tasks. (tags: encosia.com 2008 mes0 dia10 at_tecp ASP.NET javascript blog_post **** ajax) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

