<?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: Batch Apex Status Bar</title>
	<atom:link href="http://www.tehnrd.com/batch-apex-status-bar/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tehnrd.com/batch-apex-status-bar/</link>
	<description>Force.com - jQuery - Technology - Life</description>
	<lastBuildDate>Wed, 08 Sep 2010 01:23:38 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Tom</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-734</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Thu, 08 Apr 2010 04:01:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-734</guid>
		<description>This is a solid piece of code.  I modified slightly to accept a parameter for the job number instead of the number of jobs to display.  I wanted to be able to render a progress bar on the page for a specific job instead of all jobs in queue.  Thanx for doing all the heavy lifting!</description>
		<content:encoded><![CDATA[<p>This is a solid piece of code.  I modified slightly to accept a parameter for the job number instead of the number of jobs to display.  I wanted to be able to render a progress bar on the page for a specific job instead of all jobs in queue.  Thanx for doing all the heavy lifting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gulshan middha</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-582</link>
		<dc:creator>Gulshan middha</dc:creator>
		<pubDate>Thu, 11 Mar 2010 09:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-582</guid>
		<description>Nice piece of code. Very useful.</description>
		<content:encoded><![CDATA[<p>Nice piece of code. Very useful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-471</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Fri, 29 Jan 2010 16:49:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-471</guid>
		<description>Additional code as been added.</description>
		<content:encoded><![CDATA[<p>Additional code as been added.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Swagat</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-470</link>
		<dc:creator>Swagat</dc:creator>
		<pubDate>Fri, 29 Jan 2010 12:57:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-470</guid>
		<description>I think you forgot to post the “batchStatus” Apex code.

what will the command button action=&quot;{!startBatch}&quot; will do??

eagerly waiting for your reply.</description>
		<content:encoded><![CDATA[<p>I think you forgot to post the “batchStatus” Apex code.</p>
<p>what will the command button action=&#8221;{!startBatch}&#8221; will do??</p>
<p>eagerly waiting for your reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-423</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Wed, 20 Jan 2010 04:27:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-423</guid>
		<description>Thanks for pointing that out Jim. Sometimes the blog editor messes up the code with the &lt;&gt; characters. Same thing happen in your comment but I think I know what you were trying to say and the code has been updated.</description>
		<content:encoded><![CDATA[<p>Thanks for pointing that out Jim. Sometimes the blog editor messes up the code with the <> characters. Same thing happen in your comment but I think I know what you were trying to say and the code has been updated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-422</link>
		<dc:creator>Jim</dc:creator>
		<pubDate>Wed, 20 Jan 2010 02:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-422</guid>
		<description>This is awesome, thank you so much for sharing.  One comment, though.  The code you have posted does not work, it is not the same as what you have in your package for installation.  If you look at line 3 of your controller, you will see the first invalid code:
 public List batchJobs;
This should be
  public List batchJobs;

Other than that, it is great, and I appreciate you publishing it, and for all of your great support on the community forums.</description>
		<content:encoded><![CDATA[<p>This is awesome, thank you so much for sharing.  One comment, though.  The code you have posted does not work, it is not the same as what you have in your package for installation.  If you look at line 3 of your controller, you will see the first invalid code:<br />
 public List batchJobs;<br />
This should be<br />
  public List batchJobs;</p>
<p>Other than that, it is great, and I appreciate you publishing it, and for all of your great support on the community forums.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-360</link>
		<dc:creator>Daniel</dc:creator>
		<pubDate>Tue, 12 Jan 2010 17:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-360</guid>
		<description>Nice work! One question, I&#039;m unable to find the &quot;batchStatus&quot; Apex code. Do you think you could explain about that class?</description>
		<content:encoded><![CDATA[<p>Nice work! One question, I&#8217;m unable to find the &#8220;batchStatus&#8221; Apex code. Do you think you could explain about that class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://www.tehnrd.com/batch-apex-status-bar/comment-page-1/#comment-322</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Fri, 18 Dec 2009 16:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tehnrd.com/?p=356#comment-322</guid>
		<description>Nice piece of code</description>
		<content:encoded><![CDATA[<p>Nice piece of code</p>
]]></content:encoded>
	</item>
</channel>
</rss>
