<?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: GSpreadsheet: JavaScript Helper for Google Spreadsheets</title>
	<atom:link href="http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/feed" rel="self" type="application/rss+xml" />
	<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets</link>
	<description>blogging about life, the universe, and everything tech</description>
	<lastBuildDate>Sat, 08 Sep 2012 07:06:53 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Todd</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-46797</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Wed, 23 Jun 2010 23:48:02 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-46797</guid>
		<description>You can do:

key.replace(/-/g, &quot;_&quot;)

to replace all dashes with underscores.</description>
		<content:encoded><![CDATA[<p>You can do:</p>
<p>key.replace(/-/g, &#8220;_&#8221;)</p>
<p>to replace all dashes with underscores.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Rule</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-40423</link>
		<dc:creator>Jeff Rule</dc:creator>
		<pubDate>Wed, 25 Feb 2009 22:09:17 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-40423</guid>
		<description>Nicola - Great example.  I&#039;m having the same issue with the key even after I swapped out the function.  It looks like your swapping the &quot;-&quot; for an &quot;_&quot;.  This changes the key value and causes it not to work.  Any way to make this work with a &quot;-&quot; in the ID?</description>
		<content:encoded><![CDATA[<p>Nicola &#8211; Great example.  I&#8217;m having the same issue with the key even after I swapped out the function.  It looks like your swapping the &#8220;-&#8221; for an &#8220;_&#8221;.  This changes the key value and causes it not to work.  Any way to make this work with a &#8220;-&#8221; in the ID?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-39586</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Mon, 15 Sep 2008 02:52:19 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-39586</guid>
		<description>Nicola - thanks for the fix!</description>
		<content:encoded><![CDATA[<p>Nicola &#8211; thanks for the fix!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nicola</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-39584</link>
		<dc:creator>Nicola</dc:creator>
		<pubDate>Sun, 14 Sep 2008 22:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-39584</guid>
		<description>I realized that the issue is with the character &#039;-&#039; inside the key.
I patched the definition of callback with 2 replace of the &#039;-&#039; into a &#039;_&#039;

 var callbackName = &quot;GSpreadsheet.loader_&quot; + key.replace(&quot;\-&quot;,&quot;_&quot;).replace(&quot;\-&quot;,&quot;_&quot;)+&quot;_&quot; + worksheet;
 
It&#039;s not an elegant solution but really i couldn&#039;t figure out how to realize a replaceAll with js...</description>
		<content:encoded><![CDATA[<p>I realized that the issue is with the character &#8216;-&#8217; inside the key.<br />
I patched the definition of callback with 2 replace of the &#8216;-&#8217; into a &#8216;_&#8217;</p>
<p> var callbackName = &#8220;GSpreadsheet.loader_&#8221; + key.replace(&#8221;\-&#8221;,&#8221;_&#8221;).replace(&#8221;\-&#8221;,&#8221;_&#8221;)+&#8221;_&#8221; + worksheet;</p>
<p>It&#8217;s not an elegant solution but really i couldn&#8217;t figure out how to realize a replaceAll with js&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Col</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-39420</link>
		<dc:creator>Col</dc:creator>
		<pubDate>Fri, 15 Aug 2008 20:31:36 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-39420</guid>
		<description>Hey,

Thanks a lot for the article - I have found it very useful.
I have managed to get the code working perfectly in FF with slight modification and the addition of several functions.

I would love to use this code in application however the spreadsheets will not load (client side) in IE as the browser cannot find a privacy policy for the spreadsheets and blocks them =(

Is there any way to get around this?
Thanks again, Colin</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>Thanks a lot for the article &#8211; I have found it very useful.<br />
I have managed to get the code working perfectly in FF with slight modification and the addition of several functions.</p>
<p>I would love to use this code in application however the spreadsheets will not load (client side) in IE as the browser cannot find a privacy policy for the spreadsheets and blocks them =(</p>
<p>Is there any way to get around this?<br />
Thanks again, Colin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-38814</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 19 Jun 2008 16:24:56 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-38814</guid>
		<description>Alright, I still haven&#039;t got this to work with my spreadsheet, but I did get it work with another spreadsheet that I found online (key=pc4wtY50XBCN7dR1cbIJmDA). This narrowed the problem down to the key, because both of the keys that worked did not have any symbols in them. Mine does, and now I am going to look at the gspreadsheet.js to see if I can modify it to correct this problem. Any help would be appreciated. Thanks.</description>
		<content:encoded><![CDATA[<p>Alright, I still haven&#8217;t got this to work with my spreadsheet, but I did get it work with another spreadsheet that I found online (key=pc4wtY50XBCN7dR1cbIJmDA). This narrowed the problem down to the key, because both of the keys that worked did not have any symbols in them. Mine does, and now I am going to look at the gspreadsheet.js to see if I can modify it to correct this problem. Any help would be appreciated. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-38801</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 13 Jun 2008 14:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-38801</guid>
		<description>Hi, I have been trying to use your example with one of my spreadsheets and I can&#039;t get it to work. The only things I changed were the key and the variables for the spreadsheet. Is there a problem with the formating of my key? This is the error that I got on my page. 
Error: invalid assignment left-hand side
Line: 87, Column: 48
Source Code:
GSpreadsheet.loader_p_Ixp7T-h4ecEKfNSDU4ddQ_od6 = function(json) { var gs = new GSpreadsheet(key, json, options); callback(gs); }

Does this have to do with JSON-In-Script? I have looked through the Spreadsheet API and I am afraid that I am lost. Any help or direction would be much appreciated. Thanks.</description>
		<content:encoded><![CDATA[<p>Hi, I have been trying to use your example with one of my spreadsheets and I can&#8217;t get it to work. The only things I changed were the key and the variables for the spreadsheet. Is there a problem with the formating of my key? This is the error that I got on my page.<br />
Error: invalid assignment left-hand side<br />
Line: 87, Column: 48<br />
Source Code:<br />
GSpreadsheet.loader_p_Ixp7T-h4ecEKfNSDU4ddQ_od6 = function(json) { var gs = new GSpreadsheet(key, json, options); callback(gs); }</p>
<p>Does this have to do with JSON-In-Script? I have looked through the Spreadsheet API and I am afraid that I am lost. Any help or direction would be much appreciated. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: new york</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-37670</link>
		<dc:creator>new york</dc:creator>
		<pubDate>Thu, 20 Dec 2007 19:52:09 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-37670</guid>
		<description>virginia is a fairy</description>
		<content:encoded><![CDATA[<p>virginia is a fairy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: virginia</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-37408</link>
		<dc:creator>virginia</dc:creator>
		<pubDate>Mon, 30 Jul 2007 14:15:20 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-37408</guid>
		<description>if one tries to overhaul two rabbits he can catch no one

</description>
		<content:encoded><![CDATA[<p>if one tries to overhaul two rabbits he can catch no one</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shark12er</title>
		<link>http://almaer.com/blog/gspreadsheet-javascript-helper-for-google-spreadsheets/comment-page-1#comment-37407</link>
		<dc:creator>shark12er</dc:creator>
		<pubDate>Thu, 14 Jun 2007 08:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://almaer.com/blog2/gspreadsheet-javascript-helper-for-google-spreadsheets#comment-37407</guid>
		<description>&quot;enjoyed reading this ,thanks&quot;

www.mp4-converter.net/dvd-to-mp4/


</description>
		<content:encoded><![CDATA[<p>&#8220;enjoyed reading this ,thanks&#8221;</p>
<p><a href="http://www.mp4-converter.net/dvd-to-mp4/" rel="nofollow">http://www.mp4-converter.net/dvd-to-mp4/</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
