<?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>My Internet journey &#187; Clarizen</title>
	<atom:link href="http://pishpesh.net/blog/tag/clarizen/feed/" rel="self" type="application/rss+xml" />
	<link>http://pishpesh.net/blog</link>
	<description>One day son, this will all be yours...</description>
	<lastBuildDate>Tue, 06 Jul 2010 12:42:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Clarizen V4.5 New Feature Overview Video</title>
		<link>http://pishpesh.net/blog/2010/03/11/clarizen-v4-5-new-feature-overview-video/</link>
		<comments>http://pishpesh.net/blog/2010/03/11/clarizen-v4-5-new-feature-overview-video/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 10:34:04 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Tech news]]></category>
		<category><![CDATA[Clarizen]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=126</guid>
		<description><![CDATA[Coming really soon, a new and exciting version of Clarizen.]]></description>
			<content:encoded><![CDATA[<p>Coming really soon, <a href="http://www.youtube.com/watch?v=HU_xG42I64c">a new and exciting version of Clarizen</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2010/03/11/clarizen-v4-5-new-feature-overview-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Clearing an input of type=&#8217;file&#8217;</title>
		<link>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/</link>
		<comments>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/#comments</comments>
		<pubDate>Sun, 07 Mar 2010 10:31:28 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Technical articles]]></category>
		<category><![CDATA[Clarizen]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/?p=106</guid>
		<description><![CDATA[For obvious reasons, one cannot clear an input of type &#8216;file&#8217; (in fact, the &#8216;value&#8217; cannot be changed at all). Previous attempts to achieve this using setAttribute or direct access to the &#8216;value&#8217; property has failed. Our guys @ the UI team has found a useful workaround: &#160; function resetUploadControl&#40;control&#41; &#123; &#160; &#160; &#160; var [...]]]></description>
			<content:encoded><![CDATA[<p>For obvious reasons, one cannot clear an input of type &#8216;file&#8217; (in fact, the &#8216;value&#8217; cannot be changed at all). Previous attempts to achieve this using setAttribute or direct access to the &#8216;value&#8217; property has failed.<br />
Our guys @ the UI team has found a useful workaround:</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">function</span> resetUploadControl<span class="br0">&#40;</span>control<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span> &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw2">var</span> parent = control.<span class="me1">parentNode</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; parent.<span class="me1">removeChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="kw2">var</span> tempForm = document.<span class="me1">createElement</span><span class="br0">&#40;</span><span class="st0">&quot;form&quot;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm.<span class="me1">appendChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm.<span class="me1">reset</span><span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; &nbsp; tempForm.<span class="me1">removeChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; tempForm = <span class="kw2">null</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; parent.<span class="me1">appendChild</span><span class="br0">&#40;</span>control<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li2">
<div class="de2">&nbsp;</div>
</li>
</ol>
</div>
<p>First, grab the elements&#8217; parent, remove the control from it and append it to a temporary form. Input elements of type file can only be cleared by resetting the form they are part of, thus the temp form.<br />
After resetting (and achieving our empty-valued input goal), re-append the control to its original parent and destroy the temp form. Mission accomplished! :)</p>
<p>Credit goes to <a href="http://il.linkedin.com/in/roniger">Ori Roniger</a> &#038; <a href="http://il.linkedin.com/in/vadimkononov">Vadim Kononov</a></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2010/03/07/clearing-an-input-of-typefile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Proud to be part of the team</title>
		<link>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/</link>
		<comments>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/#comments</comments>
		<pubDate>Mon, 14 Dec 2009 14:25:37 +0000</pubDate>
		<dc:creator>Dror Elovits</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Clarizen]]></category>

		<guid isPermaLink="false">http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/</guid>
		<description><![CDATA[It was just published that Clarizen has secured $8M in financing from leading VCs. I joined Clarizen about 5 months ago, working for the UI/UX team.]]></description>
			<content:encoded><![CDATA[<p>It was just published that <a href="http://in.sys-con.com/node/1219411">Clarizen has secured $8M in financing from leading VCs.<br />
</a></p>
<p>I joined Clarizen about 5 months ago, working for the UI/UX team.</p>
<p><img class="size-full wp-image-93 alignleft" title="10530_159032564472_652299472_2667609_3852990_n" src="http://pishpesh.net/blog/wp-content/uploads/2009/12/10530_159032564472_652299472_2667609_3852990_n.jpg" alt="10530_159032564472_652299472_2667609_3852990_n" width="423" height="330" /></p>
]]></content:encoded>
			<wfw:commentRss>http://pishpesh.net/blog/2009/12/14/proud-to-be-part-of-the-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
