<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Customized attribute in silverlight projects</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Customized attribute in silverlight projects</description>
  <pubDate>Mon, 13 Apr 2026 13:46:55 -700</pubDate>
  <lastBuildDate>Mon, 24 Sep 2012 03:39:03 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=3628</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Customized attribute in silverlight projects :   Originally posted by kimj  If...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14542#14542</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1518" rel="nofollow">blogger</a><br /><strong>Subject:</strong> 3628<br /><strong>Posted:</strong> 24-Sep-2012 at 3:39am<br /><br /><table width="99%"><tr><td class="BBquote"><strong><em>Originally posted by kimj</strong></em><br /><br />If you do have a custom verification&nbsp;attribute which must be defined on both client and server, then you have the same options as you would with any other types which must be defined on both sides, such as those in your entity model or any custom interface implementations.&nbsp; Can you elaborate on the problem you're having?<div>&nbsp;</div></td></tr></table><br><br>Thank you very much Mr Kimj your answer was very helpful, the error that i have made is that i have created two classes (files) for the same Customized validation attribute in both web and client side , the correct procedure is as what you have said , we must creat only one version in the web side and we add it as a link in the client side !<br><b>that works fine</b><br>]]>
   </description>
   <pubDate>Mon, 24 Sep 2012 03:39:03 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14542#14542</guid>
  </item> 
  <item>
   <title>Customized attribute in silverlight projects : To make things clear, i want to...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14509#14509</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1518" rel="nofollow">blogger</a><br /><strong>Subject:</strong> 3628<br /><strong>Posted:</strong> 22-Sep-2012 at 3:08am<br /><br />To make things clear, i want to create reusable customized attributes in dll's to put them in my project, to reach this i have to create two dll's the first for the silverlight project and the second for the web project like what you have done in&nbsp; Ideablade.Validation.SL and &nbsp; Ideablade.Validation , i think we must create two dll's because our entities are defined in the web project and must be linked in the silverlight project , so the silverlight project must know about the existence of these customized attributes.<br><br>Thankd<br>]]>
   </description>
   <pubDate>Sat, 22 Sep 2012 03:08:14 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14509#14509</guid>
  </item> 
  <item>
   <title>Customized attribute in silverlight projects :   If you do have a custom verificationattribute...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14463#14463</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=11" rel="nofollow">kimj</a><br /><strong>Subject:</strong> 3628<br /><strong>Posted:</strong> 17-Sep-2012 at 12:39pm<br /><br />If you do have a custom verification&nbsp;attribute which must be defined on both client and server, then you have the same options as you would with any other types which must be defined on both sides, such as those in your entity model or any custom interface implementations.&nbsp; Can you elaborate on the problem you're having?<div>&nbsp;</div>]]>
   </description>
   <pubDate>Mon, 17 Sep 2012 12:39:29 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14463#14463</guid>
  </item> 
  <item>
   <title>Customized attribute in silverlight projects : Hi Ideablade  Following on the...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14442#14442</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=1518" rel="nofollow">blogger</a><br /><strong>Subject:</strong> 3628<br /><strong>Posted:</strong> 14-Sep-2012 at 2:05am<br /><br />Hi Ideablade<DIV>&nbsp;</DIV><DIV>Following on the <a href="http://www.ideablade.com/forum/forum_posts.asp?TID=2747&amp;title=custom-verifier-attribute" target="_blank">post about custom validation attribue on silverlight</A>&nbsp;i have a very important problem that prevent me from continuing some validation process, as you know, to customize entities validation in silverlight we have to create a "buddy" class (with metadata) and apply the customized attribute that we 've just created on a static similar field on the metadata class, the problem is in silverlight we have to create the buddy class in the web project&nbsp; and add it as link in silverlight project,&nbsp; so , the customized attribute should be known by both web and silverlight&nbsp;&nbsp;project to work well, but we have created only one version of this attribute? what do you suggest in such a case ? in ideablade project you have creates two dll 's one for web side Ideablade.Validation.dll and the other for the silverlight &nbsp;client silde which is Ideablade.Validation.SL, so please give me a solution to this issue ! </DIV><DIV>&nbsp;</DIV><DIV>Thanks a lot !</DIV>]]>
   </description>
   <pubDate>Fri, 14 Sep 2012 02:05:09 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=3628&amp;PID=14442#14442</guid>
  </item> 
 </channel>
</rss>