<?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: FluentValidation Client-Side Custom Validation with MVC	</title>
	<atom:link href="https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/feed/" rel="self" type="application/rss+xml" />
	<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/</link>
	<description>Blog about Things by Adam Zolotarev</description>
	<lastBuildDate>Tue, 14 Mar 2017 22:15:10 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.1</generator>
	<item>
		<title>
		By: Adam Z		</title>
		<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-332</link>

		<dc:creator><![CDATA[Adam Z]]></dc:creator>
		<pubDate>Tue, 14 Mar 2017 22:15:10 +0000</pubDate>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=54#comment-332</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-330&quot;&gt;Jonathan&lt;/a&gt;.

Jonathan - my guess is that you have a [Required] attribute on one of your models. You would need to remove it and handle it with fluent validation code. Hope it helps!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-330">Jonathan</a>.</p>
<p>Jonathan &#8211; my guess is that you have a [Required] attribute on one of your models. You would need to remove it and handle it with fluent validation code. Hope it helps!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jonathan		</title>
		<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-330</link>

		<dc:creator><![CDATA[Jonathan]]></dc:creator>
		<pubDate>Tue, 14 Mar 2017 18:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=54#comment-330</guid>

					<description><![CDATA[Hi Adam, I have implemented your code as is and get the following error when I try to use this on any MVC5 view: 

&quot;Additional information: Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required&quot;

Where should I look to fix this?]]></description>
			<content:encoded><![CDATA[<p>Hi Adam, I have implemented your code as is and get the following error when I try to use this on any MVC5 view: </p>
<p>&#8220;Additional information: Validation type names in unobtrusive client validation rules must be unique. The following validation type was seen more than once: required&#8221;</p>
<p>Where should I look to fix this?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: admin		</title>
		<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-21</link>

		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 09 Jan 2015 00:21:11 +0000</pubDate>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=54#comment-21</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-20&quot;&gt;Brian&lt;/a&gt;.

That would be inherited from PropertyValidator. You can checkout  &lt;a href=&quot;https://github.com/JeremySkinner/FluentValidation/&quot; rel=&quot;nofollow&quot;&gt; fluentvalidation at GitHub &lt;/a&gt;. Here&#039;s PropertyValidator: https://github.com/JeremySkinner/FluentValidation/blob/master/src/FluentValidation/Validators/PropertyValidator.cs]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-20">Brian</a>.</p>
<p>That would be inherited from PropertyValidator. You can checkout  <a href="https://github.com/JeremySkinner/FluentValidation/" rel="nofollow"> fluentvalidation at GitHub </a>. Here&#8217;s PropertyValidator: <a href="https://github.com/JeremySkinner/FluentValidation/blob/master/src/FluentValidation/Validators/PropertyValidator.cs" rel="nofollow ugc">https://github.com/JeremySkinner/FluentValidation/blob/master/src/FluentValidation/Validators/PropertyValidator.cs</a></p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Brian		</title>
		<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-20</link>

		<dc:creator><![CDATA[Brian]]></dc:creator>
		<pubDate>Wed, 07 Jan 2015 16:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=54#comment-20</guid>

					<description><![CDATA[For the following code:

&lt;code&gt;
var formatter = new MessageFormatter().AppendPropertyName(Rule.GetDisplayName());
        string message = formatter.BuildMessage(RequiredIfClientSideValidator.ErrorMessageSource.GetString());
&lt;/code&gt;

What does RequiredIfClientSideValidator.ErrorMessageSource look like?]]></description>
			<content:encoded><![CDATA[<p>For the following code:</p>
<p><code><br />
var formatter = new MessageFormatter().AppendPropertyName(Rule.GetDisplayName());<br />
        string message = formatter.BuildMessage(RequiredIfClientSideValidator.ErrorMessageSource.GetString());<br />
</code></p>
<p>What does RequiredIfClientSideValidator.ErrorMessageSource look like?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: ali		</title>
		<link>https://blog.adamzolo.com/fluentvalidation-client-side-custom-validation/#comment-19</link>

		<dc:creator><![CDATA[ali]]></dc:creator>
		<pubDate>Wed, 02 Jul 2014 19:27:49 +0000</pubDate>
		<guid isPermaLink="false">http://eazolo.com/blog/?p=54#comment-19</guid>

					<description><![CDATA[Very help full]]></description>
			<content:encoded><![CDATA[<p>Very help full</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
