<?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"
	>
<channel>
	<title>Comments on: ASP.NET Calendar Control and Yahoo.UI.Calendar</title>
	<atom:link href="http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar/feed" rel="self" type="application/rss+xml" />
	<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar</link>
	<description>Sharing our knowledge</description>
	<pubDate>Wed, 08 Oct 2008 00:00:35 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Meenakshi</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-82487</link>
		<dc:creator>Meenakshi</dc:creator>
		<pubDate>Tue, 15 Jul 2008 06:11:42 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-82487</guid>
		<description>thanx this is the useful thing I found</description>
		<content:encoded><![CDATA[<p>thanx this is the useful thing I found</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-58580</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Wed, 30 Apr 2008 09:25:37 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-58580</guid>
		<description>You can change the z-index for that..</description>
		<content:encoded><![CDATA[<p>You can change the z-index for that..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vidya</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-58574</link>
		<dc:creator>Vidya</dc:creator>
		<pubDate>Wed, 30 Apr 2008 08:48:13 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-58574</guid>
		<description>Hi,
I used the calendar control and it is working fine.
But the calendar gets hidden if i place a asp dropdown control below the text box.

Thanks 
Vidya</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I used the calendar control and it is working fine.<br />
But the calendar gets hidden if i place a asp dropdown control below the text box.</p>
<p>Thanks<br />
Vidya</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-55337</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Fri, 18 Apr 2008 15:32:11 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-55337</guid>
		<description>I think there is one sample for ASP.NET 2.0 .. you can search that demo in my blog.

It's because of the javascript reference. Could you please check the link of JS and the order of JS??</description>
		<content:encoded><![CDATA[<p>I think there is one sample for ASP.NET 2.0 .. you can search that demo in my blog.</p>
<p>It&#8217;s because of the javascript reference. Could you please check the link of JS and the order of JS??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkat</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-55306</link>
		<dc:creator>Venkat</dc:creator>
		<pubDate>Fri, 18 Apr 2008 13:58:04 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-55306</guid>
		<description>I have used the code but I am getting a java script error saying that... "'this .oDomContainer' is null or not an object".

The error is appearing in the following code...

		function showCalendar1(txtDateClientID,btnCalendarID) {
		   this.link1 = document.getElementById(btnCalendarID);
		   this.oTxtDate = document.getElementById(txtDateClientID);
		   var pos = YAHOO.util.Dom.getXY(link1);
		   alert("The Position is :" + pos);
		   YAHOO.example.calendar.cal1.oDomContainer.style.display='block';
		   alert("Blocked the view.");
		   YAHOO.util.Dom.setXY(YAHOO.example.calendar.cal1.oDomContainer, [pos[0],pos[1]+link1.offsetHeight+1]);
		   alert('After setting XY.');
		}

Could you please help me out in solving this issue. I am using ASP.NET 2.0 version.

The first alert is shown but after that, the code in next line is raising an error.</description>
		<content:encoded><![CDATA[<p>I have used the code but I am getting a java script error saying that&#8230; &#8220;&#8216;this .oDomContainer&#8217; is null or not an object&#8221;.</p>
<p>The error is appearing in the following code&#8230;</p>
<p>		function showCalendar1(txtDateClientID,btnCalendarID) {<br />
		   this.link1 = document.getElementById(btnCalendarID);<br />
		   this.oTxtDate = document.getElementById(txtDateClientID);<br />
		   var pos = YAHOO.util.Dom.getXY(link1);<br />
		   alert(&#8221;The Position is :&#8221; + pos);<br />
		   YAHOO.example.calendar.cal1.oDomContainer.style.display=&#8217;block&#8217;;<br />
		   alert(&#8221;Blocked the view.&#8221;);<br />
		   YAHOO.util.Dom.setXY(YAHOO.example.calendar.cal1.oDomContainer, [pos[0],pos[1]+link1.offsetHeight+1]);<br />
		   alert(&#8217;After setting XY.&#8217;);<br />
		}</p>
<p>Could you please help me out in solving this issue. I am using ASP.NET 2.0 version.</p>
<p>The first alert is shown but after that, the code in next line is raising an error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Sync</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-38230</link>
		<dc:creator>Michael Sync</dc:creator>
		<pubDate>Sat, 09 Feb 2008 13:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-38230</guid>
		<description>Hello Kavi,

Can you tell me what error you are getting?</description>
		<content:encoded><![CDATA[<p>Hello Kavi,</p>
<p>Can you tell me what error you are getting?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kavi</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-38061</link>
		<dc:creator>kavi</dc:creator>
		<pubDate>Fri, 08 Feb 2008 21:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-38061</guid>
		<description>Hi 

I like the pop up calender, please help to do in VB.NET...i tried, but  Response.Write("window.opener." + Request.QueryString["field"].ToString() + ".value='" + retDate + "';window.close();")

throwinf error</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>I like the pop up calender, please help to do in VB.NET&#8230;i tried, but  Response.Write(&#8221;window.opener.&#8221; + Request.QueryString["field"].ToString() + &#8220;.value=&#8217;&#8221; + retDate + &#8220;&#8216;;window.close();&#8221;)</p>
<p>throwinf error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nagabhushan Ammu</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-36542</link>
		<dc:creator>Nagabhushan Ammu</dc:creator>
		<pubDate>Sun, 03 Feb 2008 02:39:03 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-36542</guid>
		<description>Hi,
I used the Yahoo calendar control in my page but it is changing all my fonts and styles of the other controls also which is because of the linking of the required style sheets. How to avoid this. Please suggest me.
Thanks,
Nagabhushan Ammu.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I used the Yahoo calendar control in my page but it is changing all my fonts and styles of the other controls also which is because of the linking of the required style sheets. How to avoid this. Please suggest me.<br />
Thanks,<br />
Nagabhushan Ammu.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kusno</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-9771</link>
		<dc:creator>Kusno</dc:creator>
		<pubDate>Fri, 09 Nov 2007 03:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-9771</guid>
		<description>Dear Michael,
How if I want do some events parent form after clicking date in pop up calendar ?
Example : After clicking a certain date, a GridView in parent form automatically fill in by records from SQL Database table</description>
		<content:encoded><![CDATA[<p>Dear Michael,<br />
How if I want do some events parent form after clicking date in pop up calendar ?<br />
Example : After clicking a certain date, a GridView in parent form automatically fill in by records from SQL Database table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rthomas</title>
		<link>http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-7525</link>
		<dc:creator>Rthomas</dc:creator>
		<pubDate>Tue, 30 Oct 2007 15:30:44 +0000</pubDate>
		<guid isPermaLink="false">http://michaelsync.net/2006/11/06/aspnet-calendar-control-and-yahoouicalendar#comment-7525</guid>
		<description>it doesnt showing prev &#38; next month arrows</description>
		<content:encoded><![CDATA[<p>it doesnt showing prev &amp; next month arrows</p>
]]></content:encoded>
	</item>
</channel>
</rss>
