<?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 for Movies - TV - Games - NYC - Me</title>
	<atom:link href="http://www.dorffweb.com/wordpress/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dorffweb.com/wordpress</link>
	<description>What&#039;s going on in my life...</description>
	<lastBuildDate>Wed, 28 Apr 2010 21:22:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on Setting jqGrid column width from titles by Noe</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10414</link>
		<dc:creator>Noe</dc:creator>
		<pubDate>Wed, 28 Apr 2010 21:22:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10414</guid>
		<description>After further review, it was my XML string.
I was missing a column of data, which was throwing the whole thing off.

Thanks for your help.</description>
		<content:encoded><![CDATA[<p>After further review, it was my XML string.<br />
I was missing a column of data, which was throwing the whole thing off.</p>
<p>Thanks for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by kdorff</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10413</link>
		<dc:creator>kdorff</dc:creator>
		<pubDate>Wed, 28 Apr 2010 14:30:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10413</guid>
		<description>1. Did my sample project resize the 2nd and 3rd columns for you as expected?
2. Did you add  resizeToTitleWidth:true to the columns in column model that you want to have resized?
3. Did you add the &lt;span id=&quot;ruler&quot; ... &gt; span to your HTML?
4. Did you add the code I wrote to resize the columns if resizeToTitleWidth is true? This changes the column model BEFORE the grid is made to set the width on the appropriate columns. It uses the ruler to assist with doing so.
5. Did you step through my code, using Firebug, to see that it was finding the columns to resize and appropriately resizing?

The problem with Javascript is that if you have a typo, missing comma, etc. it just silently stops processing the Javascript. Firebug helps with this.

If you have Firebug installed, you can add logging lines to your Javascript

   console.log(&quot;some message&quot;);

and see the logging messages in Firebug&#039;s console to see that various parts of your code are running.&lt;/span&gt;</description>
		<content:encoded><![CDATA[<p>1. Did my sample project resize the 2nd and 3rd columns for you as expected?<br />
2. Did you add  resizeToTitleWidth:true to the columns in column model that you want to have resized?<br />
3. Did you add the <span id="ruler" ... > span to your HTML?<br />
4. Did you add the code I wrote to resize the columns if resizeToTitleWidth is true? This changes the column model BEFORE the grid is made to set the width on the appropriate columns. It uses the ruler to assist with doing so.<br />
5. Did you step through my code, using Firebug, to see that it was finding the columns to resize and appropriately resizing?</p>
<p>The problem with Javascript is that if you have a typo, missing comma, etc. it just silently stops processing the Javascript. Firebug helps with this.</p>
<p>If you have Firebug installed, you can add logging lines to your Javascript</p>
<p>   console.log("some message");</p>
<p>and see the logging messages in Firebug's console to see that various parts of your code are running.</span></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by Noe</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10412</link>
		<dc:creator>Noe</dc:creator>
		<pubDate>Wed, 28 Apr 2010 01:30:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10412</guid>
		<description>I took your advise and peeked around with firebug. I know where I need to change the width but I don&#039;t know how to do it.

It&#039;s in a th tag, I need to change the width.

th class=&quot;ui-state-default ui-th-column ui-th-ltr&quot; role=&quot;columnheader&quot; style=&quot;width: 55px;&quot;

any idea?

Thanks</description>
		<content:encoded><![CDATA[<p>I took your advise and peeked around with firebug. I know where I need to change the width but I don't know how to do it.</p>
<p>It's in a th tag, I need to change the width.</p>
<p>th class="ui-state-default ui-th-column ui-th-ltr" role="columnheader" style="width: 55px;"</p>
<p>any idea?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by kdorff</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10410</link>
		<dc:creator>kdorff</dc:creator>
		<pubDate>Tue, 27 Apr 2010 18:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10410</guid>
		<description>My overall recommendations would be

1. Make your Javascript as simple as possible
2. Use Firebug (plugin for Firefox) as it will make debugging Javascript, HTML, and CSS much simpler.
3. Web Developer Toolbar and Aardvark (other Firefox plugins) can also be very helpful. But if you just add one plugin, it needs to be Firebug.</description>
		<content:encoded><![CDATA[<p>My overall recommendations would be</p>
<p>1. Make your Javascript as simple as possible<br />
2. Use Firebug (plugin for Firefox) as it will make debugging Javascript, HTML, and CSS much simpler.<br />
3. Web Developer Toolbar and Aardvark (other Firefox plugins) can also be very helpful. But if you just add one plugin, it needs to be Firebug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by Noe</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10409</link>
		<dc:creator>Noe</dc:creator>
		<pubDate>Tue, 27 Apr 2010 18:38:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10409</guid>
		<description>Thanks for the sample code, I used the sample code and I still have the same problem. I&#039;m guessing it&#039;s my XML data: &quot;var mystr =&quot;</description>
		<content:encoded><![CDATA[<p>Thanks for the sample code, I used the sample code and I still have the same problem. I'm guessing it's my XML data: "var mystr ="</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by kdorff</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10408</link>
		<dc:creator>kdorff</dc:creator>
		<pubDate>Tue, 27 Apr 2010 17:51:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10408</guid>
		<description>I&#039;ve updated the above example with a couple minor things AND if you look at the bottom I now include a complete example that should help. This uses default fonts so the +26 offset isn&#039;t quite enough, it seems, but hopefully it will help.</description>
		<content:encoded><![CDATA[<p>I've updated the above example with a couple minor things AND if you look at the bottom I now include a complete example that should help. This uses default fonts so the +26 offset isn't quite enough, it seems, but hopefully it will help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by kdorff</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10405</link>
		<dc:creator>kdorff</dc:creator>
		<pubDate>Tue, 27 Apr 2010 16:16:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10405</guid>
		<description>Sorry, try

   ruler.innerHTML = colNamesData[i];

I&#039;ve fixed it in the above already.</description>
		<content:encoded><![CDATA[<p>Sorry, try</p>
<p>   ruler.innerHTML = colNamesData[i];</p>
<p>I've fixed it in the above already.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Setting jqGrid column width from titles by Noe</title>
		<link>http://www.dorffweb.com/wordpress/2010/04/setting-jqgrid-column-width-from-titles/comment-page-1/#comment-10403</link>
		<dc:creator>Noe</dc:creator>
		<pubDate>Tue, 27 Apr 2010 16:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=636#comment-10403</guid>
		<description>I get an error, &#039;colNames is undefined&#039;. Doesn&#039;t like this line,
 
&quot;ruler.innerHTML = colNames[i];

Any idea?

Thanks.</description>
		<content:encoded><![CDATA[<p>I get an error, 'colNames is undefined'. Doesn't like this line,</p>
<p>"ruler.innerHTML = colNames[i];</p>
<p>Any idea?</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Console, Cygwin, and Windows 7 by phayes</title>
		<link>http://www.dorffweb.com/wordpress/2009/10/console-cygwin-and-windows-7/comment-page-1/#comment-10391</link>
		<dc:creator>phayes</dc:creator>
		<pubDate>Fri, 29 Jan 2010 12:52:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=590#comment-10391</guid>
		<description>Try using mintty, a module included with cygwin. I tried &amp; abandoned rxvt when I found mintty. Mintty is similarly customizable (it even has transparency for inactive windows),  has the same xterm style copying &amp; pasting but has the advantage of a smaller footprint as it does not need X. It&#039;s one weakness is that it&#039;s multiwindow instead of tabbed.

As an aside, I just moved to WinSevenUltimate64 to break the 3.5Gb memory barrier &amp; found that cygwin/Windows integration has become much easier. Cygwin has always used /cygwin/home/username as the user homedir because the windows account equivalent has spaces. The use of spaces for &quot;My Documents&quot;, &quot;My Pictures&quot; etc was also a problem.

Win7 now uses c:\users\username as the default directory &amp; the &quot;My &quot; prefix has been dropped. I was just able to finally unify my cygwin &amp; Windows homedir by setting HOME &amp; removing the login directory from my entry in the cywin password file. Once I moved .??* &amp; the few directories i kept in my homedir from c:\cygwin\home\phayes to c:\users\phayes everything just worked!</description>
		<content:encoded><![CDATA[<p>Try using mintty, a module included with cygwin. I tried &amp; abandoned rxvt when I found mintty. Mintty is similarly customizable (it even has transparency for inactive windows),  has the same xterm style copying &amp; pasting but has the advantage of a smaller footprint as it does not need X. It's one weakness is that it's multiwindow instead of tabbed.</p>
<p>As an aside, I just moved to WinSevenUltimate64 to break the 3.5Gb memory barrier &amp; found that cygwin/Windows integration has become much easier. Cygwin has always used /cygwin/home/username as the user homedir because the windows account equivalent has spaces. The use of spaces for "My Documents", "My Pictures" etc was also a problem.</p>
<p>Win7 now uses c:\users\username as the default directory &amp; the "My " prefix has been dropped. I was just able to finally unify my cygwin &amp; Windows homedir by setting HOME &amp; removing the login directory from my entry in the cywin password file. Once I moved .??* &amp; the few directories i kept in my homedir from c:\cygwin\home\phayes to c:\users\phayes everything just worked!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Sad, Yet Thankful by Queenbee</title>
		<link>http://www.dorffweb.com/wordpress/2009/08/sad-yet-thankful/comment-page-1/#comment-10324</link>
		<dc:creator>Queenbee</dc:creator>
		<pubDate>Wed, 19 Aug 2009 09:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.dorffweb.com/wordpress/?p=579#comment-10324</guid>
		<description>Nicely said.</description>
		<content:encoded><![CDATA[<p>Nicely said.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
