<?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: jMonthCalendar 1.3.0 Beta</title>
	<atom:link href="http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/</link>
	<description>A site made of bytes by a cyclist.</description>
	<lastBuildDate>Fri, 03 Sep 2010 00:26:07 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Kyle</title>
		<link>http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/comment-page-1/#comment-4434</link>
		<dc:creator>Kyle</dc:creator>
		<pubDate>Sun, 09 Aug 2009 05:59:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.bytecyclist.com/?p=219#comment-4434</guid>
		<description>Thanks, I&#039;m trying my best.  Slowly but surely.</description>
		<content:encoded><![CDATA[<p>Thanks, I&#8217;m trying my best.  Slowly but surely.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: george</title>
		<link>http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/comment-page-1/#comment-4404</link>
		<dc:creator>george</dc:creator>
		<pubDate>Fri, 07 Aug 2009 15:26:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.bytecyclist.com/?p=219#comment-4404</guid>
		<description>really nice mate, keep it up</description>
		<content:encoded><![CDATA[<p>really nice mate, keep it up</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: King Wilder</title>
		<link>http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/comment-page-1/#comment-4161</link>
		<dc:creator>King Wilder</dc:creator>
		<pubDate>Sun, 26 Jul 2009 02:07:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.bytecyclist.com/?p=219#comment-4161</guid>
		<description>I have a question.  I&#039;m building an ASP.NET MVC application and needed a calendar and found yours.  It looks great, and kinda works.  I know I&#039;m probably missing something.

The calendar loads, but when I do an ajax request using your example, I get the JSON back, but it never gets to the events.  Can you help?

Here&#039;s my HTML Code:

        
            Check Availability
            You can check the room availability with this calendar.
            
        
    
    
        $().ready(function() {
            var options = {
                height: 300,
                width: 400,
                navHeight: 25,
                labelHeight: 25,
                onMonthChanging: function(dateIn) {
                    $.getJSON(&quot;/Reservations/Calendar/&quot; + (dateIn.getMonth() + 1) + &quot;/&quot; + dateIn.getFullYear(), null, function(event) {
                        var events = event.Events;
                        alert(events);
                        $.jMonthCalendar.ReplaceEventCollection(events);
                    });

                    return true;
                }
            };

            var events = [];
            //            var events = [{&quot;EventID&quot;:3,&quot;StartDateTime&quot;:&quot;2009-07-25&quot;,&quot;EndDateTime&quot;:&quot;2009-07-26&quot;,&quot;Title&quot;: &quot;Booked&quot;, &quot;Url&quot;: &quot;#&quot;, &quot;Description&quot;: &quot;&quot;, &quot;CssClass&quot;: null},
            //            { &quot;EventID&quot;: 4, &quot;StartDateTime&quot;: &quot;2009-07-20&quot;, &quot;EndDateTime&quot;: &quot;2009-07-22&quot;, &quot;Title&quot;: &quot;Booked&quot;, &quot;Url&quot;: &quot;#&quot;, &quot;Description&quot;: &quot;&quot;, &quot;CssClass&quot;: null },
            //            { &quot;EventID&quot;: 5, &quot;StartDateTime&quot;: &quot;2009-07-10&quot;, &quot;EndDateTime&quot;: &quot;2009-07-12&quot;, &quot;Title&quot;: &quot;Booked&quot;, &quot;Url&quot;: &quot;#&quot;, &quot;Description&quot;: &quot;&quot;, &quot;CssClass&quot;: null}];

            $.jMonthCalendar.Initialize(options, events);
        });
      

When I uncomment the hard coded events block, the dates appear in the calendar as they should.  I just can figure out how to get the dates to appear onload and onmonthchanging.

Also, the hard coded JSON, is essentially what I&#039;m getting back in the response.  So I think that&#039;s all ok.  Also, I&#039;m using your 1.3 beta because I need events spanning days.  It&#039;s for a small Motel reservation site.

There&#039;s a screenshot of the page I&#039;m using it on here: http://www.gizmobeach.com/downloads/calendar.png

Any help would be appreciated.

Nice job on this by the way.  

Thanks,

King Wilder</description>
		<content:encoded><![CDATA[<p>I have a question.  I&#8217;m building an ASP.NET MVC application and needed a calendar and found yours.  It looks great, and kinda works.  I know I&#8217;m probably missing something.</p>
<p>The calendar loads, but when I do an ajax request using your example, I get the JSON back, but it never gets to the events.  Can you help?</p>
<p>Here&#8217;s my HTML Code:</p>
<p>            Check Availability<br />
            You can check the room availability with this calendar.</p>
<p>        $().ready(function() {<br />
            var options = {<br />
                height: 300,<br />
                width: 400,<br />
                navHeight: 25,<br />
                labelHeight: 25,<br />
                onMonthChanging: function(dateIn) {<br />
                    $.getJSON(&#8220;/Reservations/Calendar/&#8221; + (dateIn.getMonth() + 1) + &#8220;/&#8221; + dateIn.getFullYear(), null, function(event) {<br />
                        var events = event.Events;<br />
                        alert(events);<br />
                        $.jMonthCalendar.ReplaceEventCollection(events);<br />
                    });</p>
<p>                    return true;<br />
                }<br />
            };</p>
<p>            var events = [];<br />
            //            var events = [{"EventID":3,"StartDateTime":"2009-07-25","EndDateTime":"2009-07-26","Title": "Booked", "Url": "#", "Description": "", "CssClass": null},<br />
            //            { "EventID": 4, "StartDateTime": "2009-07-20", "EndDateTime": "2009-07-22", "Title": "Booked", "Url": "#", "Description": "", "CssClass": null },<br />
            //            { "EventID": 5, "StartDateTime": "2009-07-10", "EndDateTime": "2009-07-12", "Title": "Booked", "Url": "#", "Description": "", "CssClass": null}];</p>
<p>            $.jMonthCalendar.Initialize(options, events);<br />
        });</p>
<p>When I uncomment the hard coded events block, the dates appear in the calendar as they should.  I just can figure out how to get the dates to appear onload and onmonthchanging.</p>
<p>Also, the hard coded JSON, is essentially what I&#8217;m getting back in the response.  So I think that&#8217;s all ok.  Also, I&#8217;m using your 1.3 beta because I need events spanning days.  It&#8217;s for a small Motel reservation site.</p>
<p>There&#8217;s a screenshot of the page I&#8217;m using it on here: <a href="http://www.gizmobeach.com/downloads/calendar.png" rel="nofollow">http://www.gizmobeach.com/downloads/calendar.png</a></p>
<p>Any help would be appreciated.</p>
<p>Nice job on this by the way.  </p>
<p>Thanks,</p>
<p>King Wilder</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Carmichael</title>
		<link>http://www.bytecyclist.com/2009/06/12/jmonthcalendar-130-beta/comment-page-1/#comment-3966</link>
		<dc:creator>Eric Carmichael</dc:creator>
		<pubDate>Thu, 16 Jul 2009 20:00:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.bytecyclist.com/?p=219#comment-3966</guid>
		<description>Keep up the good work!

Loving the calendar so far.</description>
		<content:encoded><![CDATA[<p>Keep up the good work!</p>
<p>Loving the calendar so far.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
