<?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/"
	xmlns:series="http://unfoldingneurons.com/"
		>
<channel>
	<title>Comments on: Refferencing SharePoint form fields with JavaScript</title>
	<atom:link href="http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/</link>
	<description>Boris Gomiunik</description>
	<lastBuildDate>Thu, 11 Mar 2010 16:07:31 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: SharePoint Lookup field: how does it work and how to add JavaScript event handler function to it? &#124; SharePoint</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-332</link>
		<dc:creator>SharePoint Lookup field: how does it work and how to add JavaScript event handler function to it? &#124; SharePoint</dc:creator>
		<pubDate>Sun, 25 Oct 2009 22:26:34 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-332</guid>
		<description>[...] that equals the field display name, so you can easily use the getField function that is published here. So you can also easily bind an “onchange” event to [...]</description>
		<content:encoded><![CDATA[<p>[...] that equals the field display name, so you can easily use the getField function that is published here. So you can also easily bind an “onchange” event to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-74</link>
		<dc:creator>Tim</dc:creator>
		<pubDate>Tue, 25 Mar 2008 14:37:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-74</guid>
		<description>Hi,&lt;br/&gt;&lt;br/&gt;I posted the script snippet for the toggle option on the MSDN blog page but I&#039;m short on time and have a system about to go live where Date Picker is being used for the start and end time fields in a list and users are complaining that they have to manually type the dates in. &lt;br/&gt;&lt;br/&gt;Can you please send me a copy of the routine you used, because I&#039;m having trouble enabling it?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I posted the script snippet for the toggle option on the MSDN blog page but I&#8217;m short on time and have a system about to go live where Date Picker is being used for the start and end time fields in a list and users are complaining that they have to manually type the dates in. </p>
<p>Can you please send me a copy of the routine you used, because I&#8217;m having trouble enabling it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tanker</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-73</link>
		<dc:creator>Tanker</dc:creator>
		<pubDate>Wed, 20 Feb 2008 18:55:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-73</guid>
		<description>Go ahead. If you want the whole code let me know and I can email it to you. &lt;br/&gt;&lt;br/&gt;Not sure you want it dumped here.&lt;br/&gt;I logged in with my Google Id this time so if you want to reach me you can through that. &lt;br/&gt;&lt;br/&gt;thanks</description>
		<content:encoded><![CDATA[<p>Go ahead. If you want the whole code let me know and I can email it to you. </p>
<p>Not sure you want it dumped here.<br />I logged in with my Google Id this time so if you want to reach me you can through that. </p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-72</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Wed, 20 Feb 2008 16:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-72</guid>
		<description>Erik, that&#039;s great. Would you mind if I&#039;d make an extra post about this?</description>
		<content:encoded><![CDATA[<p>Erik, that&#8217;s great. Would you mind if I&#8217;d make an extra post about this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-71</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Tue, 19 Feb 2008 17:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-71</guid>
		<description>On the drive home I figured out how to access the time fields, The id on the Hour/Minute fields use the same ID as the date field but with hours and minutes added to the end, So I added two new vars:&lt;br/&gt;var myID_Hours&lt;br/&gt;var myID_Minutes&lt;br/&gt;&lt;br/&gt;Then added the following lines into your function above the return:&lt;br/&gt;myID_Hours = docTags[i].id+&quot;Hours&quot;;&lt;br/&gt;myID_Minutes = docTags[i].id+&quot;Minutes&quot;;&lt;br/&gt;&lt;br/&gt;This lets me reference the Hour/Minute field with getElementByID&lt;br/&gt;&lt;br/&gt;I hope this helps someone else. Drove me nutes. :D</description>
		<content:encoded><![CDATA[<p>On the drive home I figured out how to access the time fields, The id on the Hour/Minute fields use the same ID as the date field but with hours and minutes added to the end, So I added two new vars:<br />var myID_Hours<br />var myID_Minutes</p>
<p>Then added the following lines into your function above the return:<br />myID_Hours = docTags[i].id+&#8221;Hours&#8221;;<br />myID_Minutes = docTags[i].id+&#8221;Minutes&#8221;;</p>
<p>This lets me reference the Hour/Minute field with getElementByID</p>
<p>I hope this helps someone else. Drove me nutes. <img src='http://www.sharepointboris.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-70</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Mon, 18 Feb 2008 21:19:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-70</guid>
		<description>Thanks for the great tip on that explorer Boris. &lt;br/&gt;&lt;br/&gt;My problem is that the Date/Time fields are one field with a single Title but separate Id&#039;s. I can modify the date part of the field no problem, it&#039;s accessing the Hours/Minutes that is giving me grief. Everything I find will only work with Titles. &lt;br/&gt;&lt;br/&gt;Is there a way to set the value of the field based on the ID? I know SP adds the page information to the front of the field ID&#039;s which makes it difficult to pick them out to set them.&lt;br/&gt;&lt;br/&gt;Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks for the great tip on that explorer Boris. </p>
<p>My problem is that the Date/Time fields are one field with a single Title but separate Id&#8217;s. I can modify the date part of the field no problem, it&#8217;s accessing the Hours/Minutes that is giving me grief. Everything I find will only work with Titles. </p>
<p>Is there a way to set the value of the field based on the ID? I know SP adds the page information to the front of the field ID&#8217;s which makes it difficult to pick them out to set them.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-69</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Mon, 18 Feb 2008 21:01:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-69</guid>
		<description>Unfortunately this is a bit tougher, because all of those options are in a table and every option is in its own row. I&#039;m thinking one option is to make a CSS hack to display table rows inline, or make paralel checkboxes and with onClick event you check or uncheck these options.</description>
		<content:encoded><![CDATA[<p>Unfortunately this is a bit tougher, because all of those options are in a table and every option is in its own row. I&#8217;m thinking one option is to make a CSS hack to display table rows inline, or make paralel checkboxes and with onClick event you check or uncheck these options.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-68</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Mon, 18 Feb 2008 07:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-68</guid>
		<description>My requirement is that I need to create a custom column of type &#039;choice&#039; for a list   but the check boxes should appear in horizontal pattern rather than the default vertical pattern. Is it possible using javascript?</description>
		<content:encoded><![CDATA[<p>My requirement is that I need to create a custom column of type &#8216;choice&#8217; for a list   but the check boxes should appear in horizontal pattern rather than the default vertical pattern. Is it possible using javascript?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boris Gomiunik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-67</link>
		<dc:creator>Boris Gomiunik</dc:creator>
		<pubDate>Fri, 15 Feb 2008 08:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-67</guid>
		<description>Hi, Erik.&lt;br/&gt;&lt;br/&gt;You can use the IE developer Toolbar to get the ID or Title of the field:&lt;br/&gt;&lt;br/&gt;http://webborg.blogspot.com/2007/10/great-tools-for-web-developers-pt1.html</description>
		<content:encoded><![CDATA[<p>Hi, Erik.</p>
<p>You can use the IE developer Toolbar to get the ID or Title of the field:</p>
<p><a href="http://webborg.blogspot.com/2007/10/great-tools-for-web-developers-pt1.html" rel="nofollow">http://webborg.blogspot.com/2007/10/great-tools-for-web-developers-pt1.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Erik</title>
		<link>http://www.sharepointboris.net/2007/07/refferencing-sharepoint-form-fields-with-javascript/comment-page-1/#comment-66</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Thu, 14 Feb 2008 21:46:00 +0000</pubDate>
		<guid isPermaLink="false">http://doma.gomiunik.net/?p=73#comment-66</guid>
		<description>Great post, got it working easily enough, but i have an issue.&lt;br/&gt;&lt;br/&gt;Has anyone figured out how to access the time choice fields from a date/time field?&lt;br/&gt;&lt;br/&gt;I can access it if it is just the date, but I haven&#039;t figured out how to access the time part of it.</description>
		<content:encoded><![CDATA[<p>Great post, got it working easily enough, but i have an issue.</p>
<p>Has anyone figured out how to access the time choice fields from a date/time field?</p>
<p>I can access it if it is just the date, but I haven&#8217;t figured out how to access the time part of it.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
