<?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 for A Log on JavaScript</title>
	<atom:link href="http://www.jslog.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://www.jslog.com</link>
	<description></description>
	<lastBuildDate>Fri, 15 Jul 2011 04:51:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Testing ExtJS with Selenium &#8211; Automating UI Tests by Ravi Sankar</title>
		<link>http://www.jslog.com/testing-extjs-with-selenium-automating-ui-tests/comment-page-1#comment-456</link>
		<dc:creator>Ravi Sankar</dc:creator>
		<pubDate>Fri, 15 Jul 2011 04:51:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=217#comment-456</guid>
		<description>Yes.... why can&#039;t we use css-Selectors as Dirk said</description>
		<content:encoded><![CDATA[<p>Yes&#8230;. why can&#8217;t we use css-Selectors as Dirk said</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window &#8216;tofront&#8217; and &#8216;toback&#8217; events by radu</title>
		<link>http://www.jslog.com/window-tofront-and-toback-events/comment-page-1#comment-443</link>
		<dc:creator>radu</dc:creator>
		<pubDate>Tue, 12 Jul 2011 10:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=200#comment-443</guid>
		<description>Hi Fielstem,

Thanks for the question. As you can see, I am overriding the toFront method. If you look in the sources for Ext.Window.toFront, you see it&#039;s returning &#039;this&#039;, so I just keep the contract so as not to break other parts of the library. It is a common technique to return `this`, as it is useful for chainability. For example, having a reference to an Ext.Element you can chain methods like: el.show().addClass(&#039;test-class&#039;).applyStyles({ border:&#039;1px solid red&#039;})... and so on. Same with windows, you can do win.toFront().show(). Hope this is useful. Radu.</description>
		<content:encoded><![CDATA[<p>Hi Fielstem,</p>
<p>Thanks for the question. As you can see, I am overriding the toFront method. If you look in the sources for Ext.Window.toFront, you see it&#8217;s returning &#8216;this&#8217;, so I just keep the contract so as not to break other parts of the library. It is a common technique to return `this`, as it is useful for chainability. For example, having a reference to an Ext.Element you can chain methods like: el.show().addClass(&#8216;test-class&#8217;).applyStyles({ border:&#8217;1px solid red&#8217;})&#8230; and so on. Same with windows, you can do win.toFront().show(). Hope this is useful. Radu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Window &#8216;tofront&#8217; and &#8216;toback&#8217; events by fielstem</title>
		<link>http://www.jslog.com/window-tofront-and-toback-events/comment-page-1#comment-424</link>
		<dc:creator>fielstem</dc:creator>
		<pubDate>Sat, 09 Jul 2011 13:45:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=200#comment-424</guid>
		<description>I am a ExtJS newbie, so apologies for the naive question.  I&#039;m still just reading code and trying to understand the javascript and ExtJS techniques.  My question is, when completing the toFront method why do you return this?  The method triggers the two events, as intended, so what purpose does returning this serve?  Any explanation or pointing me to a useful resource would be greatly appreciated.  Thanks!</description>
		<content:encoded><![CDATA[<p>I am a ExtJS newbie, so apologies for the naive question.  I&#8217;m still just reading code and trying to understand the javascript and ExtJS techniques.  My question is, when completing the toFront method why do you return this?  The method triggers the two events, as intended, so what purpose does returning this serve?  Any explanation or pointing me to a useful resource would be greatly appreciated.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing ExtJS with Selenium &#8211; Automating UI Tests by extjstutorial.org</title>
		<link>http://www.jslog.com/testing-extjs-with-selenium-automating-ui-tests/comment-page-1#comment-352</link>
		<dc:creator>extjstutorial.org</dc:creator>
		<pubDate>Sat, 07 May 2011 15:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=217#comment-352</guid>
		<description>&lt;strong&gt;Testing ExtJS with Selenium – Automating UI Tests...&lt;/strong&gt;

Automation testing of UI is essential in any big project, but it is difficult to achieve this for user interfaces built with ExtJS. Selenium records user actions, by clicks on elements, and memorizes the ids of the selected elements. Yet since ExtJS au...</description>
		<content:encoded><![CDATA[<p><strong>Testing ExtJS with Selenium – Automating UI Tests&#8230;</strong></p>
<p>Automation testing of UI is essential in any big project, but it is difficult to achieve this for user interfaces built with ExtJS. Selenium records user actions, by clicks on elements, and memorizes the ids of the selected elements. Yet since ExtJS au&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing ExtJS with Selenium &#8211; Automating UI Tests by Dirk</title>
		<link>http://www.jslog.com/testing-extjs-with-selenium-automating-ui-tests/comment-page-1#comment-312</link>
		<dc:creator>Dirk</dc:creator>
		<pubDate>Thu, 14 Apr 2011 08:10:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=217#comment-312</guid>
		<description>Why use a XPATH selector?

With Selenium css-Selectors it&#039;s as easy as this:
css=.seleniumOkButton

Or, equivalent to your above XPATH expression:
css=table .seleniumOkButton

Both should work, but the first expression is probably the mose convenient and sufficient one.</description>
		<content:encoded><![CDATA[<p>Why use a XPATH selector?</p>
<p>With Selenium css-Selectors it&#8217;s as easy as this:<br />
css=.seleniumOkButton</p>
<p>Or, equivalent to your above XPATH expression:<br />
css=table .seleniumOkButton</p>
<p>Both should work, but the first expression is probably the mose convenient and sufficient one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I expect from ExtJS 4 by radu</title>
		<link>http://www.jslog.com/what-i-expect-from-extjs-4/comment-page-1#comment-163</link>
		<dc:creator>radu</dc:creator>
		<pubDate>Tue, 21 Dec 2010 06:13:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=225#comment-163</guid>
		<description>Hi Mark!
As preview talks have already been given to the SenchaConference in November, as far as I can see ExtJS 4 will still support IE6. It&#039;s a pitty that so many companies are still using it.</description>
		<content:encoded><![CDATA[<p>Hi Mark!<br />
As preview talks have already been given to the SenchaConference in November, as far as I can see ExtJS 4 will still support IE6. It&#8217;s a pitty that so many companies are still using it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on What I expect from ExtJS 4 by Mark</title>
		<link>http://www.jslog.com/what-i-expect-from-extjs-4/comment-page-1#comment-162</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 21 Dec 2010 02:18:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=225#comment-162</guid>
		<description>I agree that dropping IE6 support is a good thing. But hopefully not in ExtJs4, (version 5 will be fine). Our PC and Laptops at home are updated for sure. But darn! My workstation here in the office is Winxp with IE6 browser. I hate it but no choice. Upgrading of OS to Win7 will be next year.</description>
		<content:encoded><![CDATA[<p>I agree that dropping IE6 support is a good thing. But hopefully not in ExtJs4, (version 5 will be fine). Our PC and Laptops at home are updated for sure. But darn! My workstation here in the office is Winxp with IE6 browser. I hate it but no choice. Upgrading of OS to Win7 will be next year.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Testing ExtJS with Selenium &#8211; Automating UI Tests by Testing Extjs Application With Selenium : Few Pointers &#124; am i works?</title>
		<link>http://www.jslog.com/testing-extjs-with-selenium-automating-ui-tests/comment-page-1#comment-147</link>
		<dc:creator>Testing Extjs Application With Selenium : Few Pointers &#124; am i works?</dc:creator>
		<pubDate>Sun, 12 Dec 2010 09:20:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=217#comment-147</guid>
		<description>[...] useful tip that I found was by radu that solved the issues caused by auto-generated id by ExtJS. Selenium tests for ExtJS should rely [...]</description>
		<content:encoded><![CDATA[<p>[...] useful tip that I found was by radu that solved the issues caused by auto-generated id by ExtJS. Selenium tests for ExtJS should rely [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No for loops &#8211; Number prototype instead by radu</title>
		<link>http://www.jslog.com/loop-using-number-prototype/comment-page-1#comment-139</link>
		<dc:creator>radu</dc:creator>
		<pubDate>Mon, 06 Dec 2010 17:01:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=233#comment-139</guid>
		<description>@Dmitriy You are right, Ext provides nice iteration methods. I just wanted to point out a short intro to this issue, that can be used standalone, without all the overhead that ExtJS brings. I admit it&#039;s nothing new :) Thanks for following and for the comment.</description>
		<content:encoded><![CDATA[<p>@Dmitriy You are right, Ext provides nice iteration methods. I just wanted to point out a short intro to this issue, that can be used standalone, without all the overhead that ExtJS brings. I admit it&#8217;s nothing new <img src='http://www.jslog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Thanks for following and for the comment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No for loops &#8211; Number prototype instead by Dmitriy Pashkevich</title>
		<link>http://www.jslog.com/loop-using-number-prototype/comment-page-1#comment-138</link>
		<dc:creator>Dmitriy Pashkevich</dc:creator>
		<pubDate>Mon, 06 Dec 2010 07:56:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jslog.com/?p=233#comment-138</guid>
		<description>ExtJS already implements such functionality. It would also be useful to write a similar function for iterating object properties.
See Ext.each and Ext.iterate</description>
		<content:encoded><![CDATA[<p>ExtJS already implements such functionality. It would also be useful to write a similar function for iterating object properties.<br />
See Ext.each and Ext.iterate</p>
]]></content:encoded>
	</item>
</channel>
</rss>

