<?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 SPoint blog</title>
	<atom:link href="http://spointblog.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://spointblog.com</link>
	<description>the cup of SharePoint</description>
	<lastBuildDate>Wed, 18 Apr 2012 13:13:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>Comment on SharePoint 2010 Fields Validation by Sveta Yerpilev</title>
		<link>http://spointblog.com/2010/02/06/sharepoint-2010-fields-validation/comment-page-1/#comment-177</link>
		<dc:creator>Sveta Yerpilev</dc:creator>
		<pubDate>Wed, 18 Apr 2012 13:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/?p=17#comment-177</guid>
		<description>You can try to create field validation with InfoPath. The you need to connect to the current list and check due dates of other items.
http://msdn.microsoft.com/en-us/library/gg180738.aspx#ip2010CustomizeList_Pt3</description>
		<content:encoded><![CDATA[<p>You can try to create field validation with InfoPath. The you need to connect to the current list and check due dates of other items.<br />
<a href="http://msdn.microsoft.com/en-us/library/gg180738.aspx#ip2010CustomizeList_Pt3" rel="nofollow">http://msdn.microsoft.com/en-us/library/gg180738.aspx#ip2010CustomizeList_Pt3</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on SharePoint 2010 Fields Validation by srikanth</title>
		<link>http://spointblog.com/2010/02/06/sharepoint-2010-fields-validation/comment-page-1/#comment-176</link>
		<dc:creator>srikanth</dc:creator>
		<pubDate>Wed, 18 Apr 2012 13:03:53 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/?p=17#comment-176</guid>
		<description>How can i compare the Current Item&#039;s DueDate to all previous items DueDate. Is this possible with custom Validation in NewForm.aspx or It can be achieved with &quot;ItemAdding EventRecievers &quot;. If any other ways to achieve this ,Can you please provide details</description>
		<content:encoded><![CDATA[<p>How can i compare the Current Item&#8217;s DueDate to all previous items DueDate. Is this possible with custom Validation in NewForm.aspx or It can be achieved with &#8220;ItemAdding EventRecievers &#8220;. If any other ways to achieve this ,Can you please provide details</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Nesreen</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-174</link>
		<dc:creator>Nesreen</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:51:28 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-174</guid>
		<description>Thanks for your help this is agreat blog :)</description>
		<content:encoded><![CDATA[<p>Thanks for your help this is agreat blog <img src='http://spointblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Sveta Yerpilev</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-173</link>
		<dc:creator>Sveta Yerpilev</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:33:38 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-173</guid>
		<description>You can check any extension:
if (linkToForm.attr(“href”).indexOf(“.docx”)&gt;-1)  &lt;--- here you can check the extension
{
//replace the link
Var newLink=”FormServer.aspx?XmlLocation=”+linkToForm.attr(“href”)+”&amp;DefaultItemOpen=1″;  &lt;---- here you need to change the link to the appropriate link for Office docs.
linkToForm.attr(“href”,newLink);
linkToForm.attr(“target”,”_blank”);
linkToForm.attr(“onclick”,”&quot;);
}</description>
		<content:encoded><![CDATA[<p>You can check any extension:<br />
if (linkToForm.attr(“href”).indexOf(“.docx”)>-1)  <&#8212; here you can check the extension<br />
{<br />
//replace the link<br />
Var newLink=”FormServer.aspx?XmlLocation=”+linkToForm.attr(“href”)+”&#038;DefaultItemOpen=1″;  <&#8212;- here you need to change the link to the appropriate link for Office docs.<br />
linkToForm.attr(“href”,newLink);<br />
linkToForm.attr(“target”,”_blank”);<br />
linkToForm.attr(“onclick”,”&#8221;);<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Nesreen</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-172</link>
		<dc:creator>Nesreen</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:29:26 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-172</guid>
		<description>can we apply this on docx , xsls etc...... , and if we can add another if for them to check for the extension</description>
		<content:encoded><![CDATA[<p>can we apply this on docx , xsls etc&#8230;&#8230; , and if we can add another if for them to check for the extension</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Sveta Yerpilev</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-171</link>
		<dc:creator>Sveta Yerpilev</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:23:16 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-171</guid>
		<description>You are welcome!</description>
		<content:encoded><![CDATA[<p>You are welcome!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Nesreen</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-170</link>
		<dc:creator>Nesreen</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:22:31 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-170</guid>
		<description>Thanks a 1000000000000000000000 this solved my problem , you saved me :)</description>
		<content:encoded><![CDATA[<p>Thanks a 1000000000000000000000 this solved my problem , you saved me <img src='http://spointblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Nesreen</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-169</link>
		<dc:creator>Nesreen</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-169</guid>
		<description>I have sent via Email due to not allowing me here to do this , Thanks for your help</description>
		<content:encoded><![CDATA[<p>I have sent via Email due to not allowing me here to do this , Thanks for your help</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Nesreen</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-168</link>
		<dc:creator>Nesreen</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:05:59 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-168</guid>
		<description>

//check if this page is the WrkTaskIP.aspx page.
var thisPage=window.location.href;
if (thisPage.indexOf(&quot;_layouts/WrkTaskIP.aspx&quot;)&gt;-1)
{
//get the content link that this workflow task applies to
var linkToForm= $(&quot;.ms-informationbar&quot;).find(&quot;a&quot;);
//check if the content is an xml file. It applies to all XML files included in InfoPath Forms.
// If you used to manage regular XML files in SharePoint libraries you will need to add additional filters to this function.
if (linkToForm.attr(&quot;href&quot;).indexOf(&quot;.xml&quot;)&gt;-1)
{
//replace the link
Var newLink = &quot;FormServer.aspx?XmlLocation=&quot; + linkToForm.attr(&quot;href&quot;)+ &quot;&amp;DefaultItemOpen=1&quot; ;
linkToForm.attr(&quot;href&quot;,newLink);
linkToForm.attr(&quot;target&quot;,&quot;_blank&quot;);
linkToForm.attr(&quot;onclick&quot;,&quot;&quot;);
}
}
</description>
		<content:encoded><![CDATA[<p>//check if this page is the WrkTaskIP.aspx page.<br />
var thisPage=window.location.href;<br />
if (thisPage.indexOf(&#8220;_layouts/WrkTaskIP.aspx&#8221;)&gt;-1)<br />
{<br />
//get the content link that this workflow task applies to<br />
var linkToForm= $(&#8220;.ms-informationbar&#8221;).find(&#8220;a&#8221;);<br />
//check if the content is an xml file. It applies to all XML files included in InfoPath Forms.<br />
// If you used to manage regular XML files in SharePoint libraries you will need to add additional filters to this function.<br />
if (linkToForm.attr(&#8220;href&#8221;).indexOf(&#8220;.xml&#8221;)&gt;-1)<br />
{<br />
//replace the link<br />
Var newLink = &#8220;FormServer.aspx?XmlLocation=&#8221; + linkToForm.attr(&#8220;href&#8221;)+ &#8220;&amp;DefaultItemOpen=1&#8243; ;<br />
linkToForm.attr(&#8220;href&#8221;,newLink);<br />
linkToForm.attr(&#8220;target&#8221;,&#8221;_blank&#8221;);<br />
linkToForm.attr(&#8220;onclick&#8221;,&#8221;");<br />
}<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Form Server based forms and the approval task form. by Sveta Yerpilev</title>
		<link>http://spointblog.com/2011/04/03/form-server-based-forms-and-the-approval-task-form/comment-page-1/#comment-167</link>
		<dc:creator>Sveta Yerpilev</dc:creator>
		<pubDate>Wed, 11 Apr 2012 08:00:01 +0000</pubDate>
		<guid isPermaLink="false">http://spointblog.com/2011/07/23/form-server-based-forms-and-the-approval-task-form/#comment-167</guid>
		<description>Can you post the code here?</description>
		<content:encoded><![CDATA[<p>Can you post the code here?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

