<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"><channel><title>Using the HTML5 and jQuery UI Datepicker Popup Calendar with ASP.NET MVC - Part 3</title><link>http://www.asp.net</link><pubDate>Tue, 12 Jun 2012 02:15:07 GMT</pubDate><generator>umbraco</generator><description>Comments for Using the HTML5 and jQuery UI Datepicker Popup Calendar with ASP.NET MVC - Part 3</description><language>en</language><atom:link href="http://www.asp.net/rss/comments/27551" rel="self" type="application/rss+xml" /><item><title>Comment Posted by thegdizzo</title><link>http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-3</link><pubDate>Wed, 04 Apr 2012 13:27:17 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000015258</guid><description><![CDATA[ <p>At the point where you&#39;re first instructed to navigate to Movies/PersonDetail (the 1st time, when it is apparently not going to show the Address info)... I instead get the following compilation error:</p><p></p><p>CS0246: The type or namespace name &#39;Person&#39; could not be found (are you missing a using directive or an assembly reference?)</p><p></p><p>I don&#39;t get it. It&#39;s clearly been added to the MvcMovies.Models namespace. I even tried adding &quot;using System.Data.Entity;&quot; to Models\Person.cs and still no go. You can clearly see that the MoviesController.cs is &quot;using MvcMovies.Models;&quot; so it *should* be able to see &quot;public class Person&quot; ... so what gives?   What am I not seeing here?</p><p></p><p>It&#39;s clearly a visibility issue. But I&#39;m just not seeing it!</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/thegdizzo.jpg?forceidenticon=false&amp;dt=635048703000000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by thegdizzo</title><link>http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-3</link><pubDate>Wed, 04 Apr 2012 13:34:29 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000015259</guid><description><![CDATA[ <p>OK... I figured it out.... the markup provided for Views\Movies\PersonDetail.cshtml </p><p></p><p>instead of :</p><p></p><p>@model Person</p><p></p><p>it should be :</p><p></p><p>@model MvcMovies.Models.Person</p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/thegdizzo.jpg?forceidenticon=false&amp;dt=635048703000000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by microchipthefirst</title><link>http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-3</link><pubDate>Fri, 11 May 2012 08:30:55 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000015485</guid><description><![CDATA[ <p>I had a similar problem with the browser reporting a missing resource - specifically the extra template views.  If they are open in the editor window,(even if saved) they&#39;ll fail.</p><p>Also, running the download in an MVC4 updated VS2010 Express, the CSS extras from page 2 don&#39;t work, but the templates do (actually the LoudDateTime fails - can&#39;t be found).</p><p>And finally, the @Html.DisplayFor( x =&gt; x.HomeAddress ) fails.  The system doen&#39;t recognise the x.HomeAddress bit.  I haven&#39;t found a workaround for that yet.  MVC4 might be getting in the way there too.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/microchipthefirst.jpg?forceidenticon=false&amp;dt=635048703000000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tjvader</title><link>http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-3</link><pubDate>Thu, 07 Jun 2012 14:54:59 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000015719</guid><description><![CDATA[ <p>Everything was fine up to this page of information. I was attempting to follow along and convert the C# to VB.NET application. Rendering the &#39;Address&#39; gives  me a &#39;Late binding operations cannot be converted to an expression tree.&#39; I also tried to place the address pieces into a &#39;ViewBag.tjAddress = New tjAddress(p.HomeAddress.StreetAddress, p.HomeAddress.City, p.HomeAddress.PostalCode)&#39; object, but it renders more junk: MvcMovie.Model.Person string as a result!? I think VB.NET has probs&#39;?</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/tjvader.jpg?forceidenticon=false&amp;dt=635048703000000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by achawla5000</title><link>http://www.asp.net/mvc/tutorials/javascript/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc/using-the-html5-and-jquery-ui-datepicker-popup-calendar-with-aspnet-mvc-part-3</link><pubDate>Tue, 12 Jun 2012 02:15:07 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000015752</guid><description><![CDATA[ <p>Rick, I believe the first line of the fourth code block on this page should read</p><p>@model MvcMovie.Models.Person</p><p></p><p>Thanks so much for the excellent tutorial! </p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/achawla5000.jpg?forceidenticon=false&amp;dt=635048703000000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item></channel></rss>