<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: datepicker popup location</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: datepicker popup location</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 03:54:43 +0000</pubDate>

<item>
<title>muhammadyounas on "datepicker popup location"</title>
<link>https://www.machform.com/forums/topic/datepicker-popup-location#post-22307</link>
<pubDate>Mon, 08 Dec 2014 16:02:19 +0000</pubDate>
<dc:creator>muhammadyounas</dc:creator>
<guid isPermaLink="false">22307@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;How to do this in machform 4.2 to change date picker popup location
&#60;/p&#62;</description>
</item>
<item>
<title>ryanpowell on "datepicker popup location"</title>
<link>https://www.machform.com/forums/topic/datepicker-popup-location#post-7225</link>
<pubDate>Mon, 07 Sep 2009 05:31:36 +0000</pubDate>
<dc:creator>ryanpowell</dc:creator>
<guid isPermaLink="false">7225@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is it possible to remove the calendar date picker all together? I am using the date field for Date of Birth so it becomes pretty pointless with most of the users being in their 60's.&#60;/p&#62;
&#60;p&#62;UPDATE: Nevermind. I found my answer here. &#60;a href=&#34;http://www.appnitro.com/forums/topic/disable-calendar?replies=5#post-4285&#34; rel=&#34;nofollow&#34;&#62;http://www.appnitro.com/forums/topic/disable-calendar?replies=5#post-4285&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>jflatham on "datepicker popup location"</title>
<link>https://www.machform.com/forums/topic/datepicker-popup-location#post-5133</link>
<pubDate>Fri, 20 Mar 2009 22:56:05 +0000</pubDate>
<dc:creator>jflatham</dc:creator>
<guid isPermaLink="false">5133@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thanks, Redityo, your instructions were spot on.  I would also mention for other users' benefit that the position parameters you posted above are in pixels from the upper left corner of the form, not the page itself.  With your guidance, my datepicker calendar is now perfectly placed, always visible.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "datepicker popup location"</title>
<link>https://www.machform.com/forums/topic/datepicker-popup-location#post-5097</link>
<pubDate>Thu, 19 Mar 2009 15:43:23 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">5097@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;It possible to move the calendar pop up location, to do so you need edit &#34;includes/view-function.php&#34;, go to around line 407 ~ 417 you will see these code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
			Calendar.setup({
			inputField	 : &#38;quot;element_{$element-&#38;gt;id}_3&#38;quot;,
			baseField    : &#38;quot;element_{$element-&#38;gt;id}&#38;quot;,
			displayArea  : &#38;quot;calendar_{$element-&#38;gt;id}&#38;quot;,
			button		 : &#38;quot;cal_img_{$element-&#38;gt;id}&#38;quot;,
			ifFormat	 : &#38;quot;%B %e, %Y&#38;quot;,
			onSelect	 : selectDate
			});
		&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;you can replace with&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;script type=&#38;quot;text/javascript&#38;quot;&#38;gt;
			Calendar.setup({
			inputField	 : &#38;quot;element_{$element-&#38;gt;id}_3&#38;quot;,
			baseField    : &#38;quot;element_{$element-&#38;gt;id}&#38;quot;,
			displayArea  : &#38;quot;calendar_{$element-&#38;gt;id}&#38;quot;,
			button		 : &#38;quot;cal_img_{$element-&#38;gt;id}&#38;quot;,
			ifFormat	 : &#38;quot;%B %e, %Y&#38;quot;,
			onSelect	 : selectDate,
			position     : [10,60]
			});
		&#38;lt;/script&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;I add &#34;position     : [10,60]&#34; parameter in there, it will set the position with [x,y] coordinate value for your pop up calendar. You can change that value to get best position in your page.&#60;/p&#62;
&#60;p&#62;Anyway maybe you can consider to change the &#34;calendar&#34; button to the left instead on the right. To do this edit &#34;includes/view-functions.php&#34; files and go to around line 376 ~ 378, you will see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;span id=&#38;quot;calendar_{$element-&#38;gt;id}&#38;quot;&#38;gt;
	&#38;lt;img id=&#38;quot;cal_img_{$element-&#38;gt;id}&#38;quot; class=&#38;quot;datepicker&#38;quot; src=&#38;quot;{$machform_path}images/calendar.gif&#38;quot; alt=&#38;quot;Pick a date.&#38;quot; /&#38;gt;
&#38;lt;/span&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Move those code to below line 362, exactly bellow this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;label class=&#38;quot;description&#38;quot;&#38;gt;{$element-&#38;gt;title} {$span_required}&#38;lt;/label&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jflatham on "datepicker popup location"</title>
<link>https://www.machform.com/forums/topic/datepicker-popup-location#post-5093</link>
<pubDate>Wed, 18 Mar 2009 23:35:53 +0000</pubDate>
<dc:creator>jflatham</dc:creator>
<guid isPermaLink="false">5093@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is there a way to modify the location of the datapicker popup calendar, or to make it &#34;always on top&#34;.  I am having proplems with the calendar being obscured by an adjacent table to the right of the form.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
