<?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: Support</title>
	<atom:link href="http://fixedheadertable.com/support/feed/" rel="self" type="application/rss+xml" />
	<link>http://fixedheadertable.com</link>
	<description>a jQuery plugin by Mark Malek</description>
	<lastBuildDate>Wed, 14 Jul 2010 00:31:20 -0700</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: shallowman</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-663</link>
		<dc:creator>shallowman</dc:creator>
		<pubDate>Wed, 14 Jul 2010 00:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-663</guid>
		<description>I keep getting the error telling me that my table structure is invalid and that I need a table, thead and tbody even though I have all of those elements in my code. Is there something that I&#039;m missing? Is your plugin expecting something specific?</description>
		<content:encoded><![CDATA[<p>I keep getting the error telling me that my table structure is invalid and that I need a table, thead and tbody even though I have all of those elements in my code. Is there something that I&#8217;m missing? Is your plugin expecting something specific?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Slawa</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-652</link>
		<dc:creator>Slawa</dc:creator>
		<pubDate>Wed, 26 May 2010 16:57:09 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-652</guid>
		<description>What&#039;s the difference between this plugin and the CSS code:
table.scrollbody {
	layout: fixed;
}
table.scrollbody &gt; tbody {
	overflow: auto;
	height: 250px;
	overflow-x: hidden;
}

The only difference I&#039;ve noticed is that CSS has to have a fixed height, whereas in jQuery it can be dynamic. Anything else?</description>
		<content:encoded><![CDATA[<p>What&#8217;s the difference between this plugin and the CSS code:<br />
table.scrollbody {<br />
	layout: fixed;<br />
}<br />
table.scrollbody > tbody {<br />
	overflow: auto;<br />
	height: 250px;<br />
	overflow-x: hidden;<br />
}</p>
<p>The only difference I&#8217;ve noticed is that CSS has to have a fixed height, whereas in jQuery it can be dynamic. Anything else?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nabeelfaruqui</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-651</link>
		<dc:creator>nabeelfaruqui</dc:creator>
		<pubDate>Wed, 26 May 2010 07:45:14 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-651</guid>
		<description>Problem with more than 1 rows as fixed in the header. We have 2 rows as fixed header inside a grid.</description>
		<content:encoded><![CDATA[<p>Problem with more than 1 rows as fixed in the header. We have 2 rows as fixed header inside a grid.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-530</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Tue, 23 Mar 2010 16:06:28 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-530</guid>
		<description>Good catch. This is/was a bug that I will correct in this upcoming release.

Thanks!</description>
		<content:encoded><![CDATA[<p>Good catch. This is/was a bug that I will correct in this upcoming release.</p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaulian</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-529</link>
		<dc:creator>Shaulian</dc:creator>
		<pubDate>Tue, 23 Mar 2010 13:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-529</guid>
		<description>Hi,

First of all thanks for the plug-in, its looks great.. but works not good as i expected.
The script is generating fht_loader div every time the buildTable function is running 
(Not good for those who generating the table every few seconds.).
So i made the following change in the code :

Instead of (Line no. 81):
			if(options.loader) {
				obj.find(&#039;.fht_parent&#039;).prepend(&#039;&#039;);
				obj.find(&#039;.fht_loader&#039;).css({&#039;width&#039;:parentDivWidth+&#039;px&#039;, &#039;height&#039;: parentDivHeight+&#039;px&#039;});
			}


I fixed to :

if (options.loader) {
    if (obj.find(&#039;.fht_loader&#039;).size() == 0) {
        obj.find(&#039;.fht_parent&#039;).prepend(&#039;&#039;);
        obj.find(&#039;.fht_loader&#039;).css({ &#039;width&#039;: parentDivWidth + &#039;px&#039;, &#039;height&#039;: parentDivHeight + &#039;px&#039; });
    }
    else {
        obj.find(&#039;.fht_loader&#039;).css(&#039;display&#039;, &#039;&#039;);                
    }
}

Hope it will help someone over there.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>First of all thanks for the plug-in, its looks great.. but works not good as i expected.<br />
The script is generating fht_loader div every time the buildTable function is running<br />
(Not good for those who generating the table every few seconds.).<br />
So i made the following change in the code :</p>
<p>Instead of (Line no. 81):<br />
			if(options.loader) {<br />
				obj.find(&#8216;.fht_parent&#8217;).prepend(&#8221;);<br />
				obj.find(&#8216;.fht_loader&#8217;).css({&#8216;width&#8217;:parentDivWidth+&#8217;px&#8217;, &#8216;height&#8217;: parentDivHeight+&#8217;px&#8217;});<br />
			}</p>
<p>I fixed to :</p>
<p>if (options.loader) {<br />
    if (obj.find(&#8216;.fht_loader&#8217;).size() == 0) {<br />
        obj.find(&#8216;.fht_parent&#8217;).prepend(&#8221;);<br />
        obj.find(&#8216;.fht_loader&#8217;).css({ &#8216;width&#8217;: parentDivWidth + &#8216;px&#8217;, &#8216;height&#8217;: parentDivHeight + &#8216;px&#8217; });<br />
    }<br />
    else {<br />
        obj.find(&#8216;.fht_loader&#8217;).css(&#8216;display&#8217;, &#8221;);<br />
    }<br />
}</p>
<p>Hope it will help someone over there.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ColinM</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-520</link>
		<dc:creator>ColinM</dc:creator>
		<pubDate>Tue, 16 Mar 2010 15:09:55 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-520</guid>
		<description>Hey, I was having the same issue.  I wanted the top table header to have headings which used &#039;colspan&#039;, and then one header underneath.  I believe this script uses the top header row to determine how the table data should be formatted.  Here is my work around.

Create a top header row with the same number of columns as the table data.  Leave the text in columns blank.  Then under that, make you header row which uses the colspans, then add wahtever other header rows you want.  You can probably minimize the height of that first table header too with css.  This is kind of hacked out but it works.</description>
		<content:encoded><![CDATA[<p>Hey, I was having the same issue.  I wanted the top table header to have headings which used &#8216;colspan&#8217;, and then one header underneath.  I believe this script uses the top header row to determine how the table data should be formatted.  Here is my work around.</p>
<p>Create a top header row with the same number of columns as the table data.  Leave the text in columns blank.  Then under that, make you header row which uses the colspans, then add wahtever other header rows you want.  You can probably minimize the height of that first table header too with css.  This is kind of hacked out but it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Subin</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-518</link>
		<dc:creator>Subin</dc:creator>
		<pubDate>Tue, 16 Mar 2010 05:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-518</guid>
		<description>I have a div in which I have a table for which I am using the plugin. In that table I have other tables which are used as subgrids or for placement purpose only for which I dont want to have fixed header. But currently the plugin is not catering this need and the plugin finds all the tables inside the div and adds fixed header to them.</description>
		<content:encoded><![CDATA[<p>I have a div in which I have a table for which I am using the plugin. In that table I have other tables which are used as subgrids or for placement purpose only for which I dont want to have fixed header. But currently the plugin is not catering this need and the plugin finds all the tables inside the div and adds fixed header to them.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: huggler</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-483</link>
		<dc:creator>huggler</dc:creator>
		<pubDate>Thu, 04 Mar 2010 04:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-483</guid>
		<description>Hi. auto height in is possible?</description>
		<content:encoded><![CDATA[<p>Hi. auto height in is possible?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CoolDude</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-474</link>
		<dc:creator>CoolDude</dc:creator>
		<pubDate>Fri, 26 Feb 2010 19:28:13 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-474</guid>
		<description>Hey Mark,

Thanks for all the hard work.
I have a dilemma, and I appreciate any help or guidance you can help me.

THe page I am working, with all its tables, but it doesnt have a 

Is there is anything I can do to use your plugin, and go around that?

May be add the thead element dynamically?

Any insight or help is greatly appreciated.

And thanks again, for all your contribution.</description>
		<content:encoded><![CDATA[<p>Hey Mark,</p>
<p>Thanks for all the hard work.<br />
I have a dilemma, and I appreciate any help or guidance you can help me.</p>
<p>THe page I am working, with all its tables, but it doesnt have a </p>
<p>Is there is anything I can do to use your plugin, and go around that?</p>
<p>May be add the thead element dynamically?</p>
<p>Any insight or help is greatly appreciated.</p>
<p>And thanks again, for all your contribution.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dizeta</title>
		<link>http://fixedheadertable.com/support/comment-page-1/#comment-472</link>
		<dc:creator>dizeta</dc:creator>
		<pubDate>Thu, 25 Feb 2010 14:24:04 +0000</pubDate>
		<guid isPermaLink="false">http://fixedheadertable.mmalek.com/?page_id=13#comment-472</guid>
		<description>love this, thanks you very much</description>
		<content:encoded><![CDATA[<p>love this, thanks you very much</p>
]]></content:encoded>
	</item>
</channel>
</rss>
