<?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: Ext JS in Action: The Table Layout</title>
	<atom:link href="http://ajaxian.com/archives/ext-js-in-action-the-table-layout/feed" rel="self" type="application/rss+xml" />
	<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout</link>
	<description>Cleaning up the web with Ajax</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:55:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
	<item>
		<title>By: jove4015</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-276001</link>
		<dc:creator>jove4015</dc:creator>
		<pubDate>Sun, 18 Oct 2009 19:15:43 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-276001</guid>
		<description>Our website uses a solid mix of tables and css... that being said we have a lot of tabular data too.  And I mean, just to drive home the point, we have tables, that are styled, with CSS.  They&#039;re both just tools to an end, guys.  It&#039;s not that CSS can&#039;t do everything... especially if you got some CSS3 support you can do pretty much whatever you want.  The fact is though, most of what CSS3 can do is not new (most - I do love my automatic rounded corners, though, thank you) - you could do it with tables before.  Some things are still, today, easier with tables - proper centered vertical and horizontal alignment, together (without indecipherable voodoo), anyone?

What it comes down to for me is, CSS only takes you so far when 40% of your users are still using a browser that was written when CSS was still just starting to take hold (that is, IE 6).  I don&#039;t think most of the table-lovers of the world would have much of a problem switching to full CSS for most use-cases if all the browsers they had to program for actually implemented CSS well.  The fact is, for many of us, one of the largest target audiences does not use such a browser.  I try, I really try, but when I spend 3 hours on a layout, get it working in 20 minutes for all but one browser and have that last browser just not cooperate and not cooperate, all the while knowing that with two little table tags I can get that browser to do exactly what I want (and all the other browsers would work with that too) - yeah.  I&#039;m going to just use a table.

Here&#039;s an example.  You&#039;ve got a row of thumbnails (variable width).  Each thumbnail can have completely different dimensions (but must fit in, say, a 60x60 square).  On the upper-right corner of that thumbnail, you want a circular delete button where only 1/4 of the button overlaps the thumbnail.  That delete button only appears when you hover over the thumbnail, and when you hover over the button, it also has a separate hover and active state.   The thumbnails must be dynamically resizable with a slider, and even after resizing that delete button&#039;s gotta be in the same place.  The thumbnails all must be vertically centered with each other (remember, they have different dimensions), and there should be a vertical line between each thumbnail which does not touch the top, or bottom of the container.  (I know, sounds really complex - but I&#039;ve hit this exact use case over, and over, and over again - my designers love this stuff).  Now, tell me, how do you do that in IE 6 without tables?

This is when the CSS purists usually say to me, &quot;well, you should just make a simpler layout&quot;.  Right.

Now, if you think that&#039;s bad, imagine what the Ext people have to deal with to work some of their magic with grids, and trees, and toolbars.  And keep it IE6 compatible.  And you&#039;re going to harp on them, because they use tables sometimes?  You should be grateful it works at all.  When you get proper floats and margins, all &quot;display&quot; options (including inline-block), vertical-align, and max-width/min-width working in every major browser, then we can start preaching about the misuse of tables.  Until that day (and I don&#039;t know about you, but I&#039;m definitely looking forward to 7/13), let&#039;s just be grateful we can accomplish these layouts in the first place.</description>
		<content:encoded><![CDATA[<p>Our website uses a solid mix of tables and css&#8230; that being said we have a lot of tabular data too.  And I mean, just to drive home the point, we have tables, that are styled, with CSS.  They&#8217;re both just tools to an end, guys.  It&#8217;s not that CSS can&#8217;t do everything&#8230; especially if you got some CSS3 support you can do pretty much whatever you want.  The fact is though, most of what CSS3 can do is not new (most &#8211; I do love my automatic rounded corners, though, thank you) &#8211; you could do it with tables before.  Some things are still, today, easier with tables &#8211; proper centered vertical and horizontal alignment, together (without indecipherable voodoo), anyone?</p>
<p>What it comes down to for me is, CSS only takes you so far when 40% of your users are still using a browser that was written when CSS was still just starting to take hold (that is, IE 6).  I don&#8217;t think most of the table-lovers of the world would have much of a problem switching to full CSS for most use-cases if all the browsers they had to program for actually implemented CSS well.  The fact is, for many of us, one of the largest target audiences does not use such a browser.  I try, I really try, but when I spend 3 hours on a layout, get it working in 20 minutes for all but one browser and have that last browser just not cooperate and not cooperate, all the while knowing that with two little table tags I can get that browser to do exactly what I want (and all the other browsers would work with that too) &#8211; yeah.  I&#8217;m going to just use a table.</p>
<p>Here&#8217;s an example.  You&#8217;ve got a row of thumbnails (variable width).  Each thumbnail can have completely different dimensions (but must fit in, say, a 60&#215;60 square).  On the upper-right corner of that thumbnail, you want a circular delete button where only 1/4 of the button overlaps the thumbnail.  That delete button only appears when you hover over the thumbnail, and when you hover over the button, it also has a separate hover and active state.   The thumbnails must be dynamically resizable with a slider, and even after resizing that delete button&#8217;s gotta be in the same place.  The thumbnails all must be vertically centered with each other (remember, they have different dimensions), and there should be a vertical line between each thumbnail which does not touch the top, or bottom of the container.  (I know, sounds really complex &#8211; but I&#8217;ve hit this exact use case over, and over, and over again &#8211; my designers love this stuff).  Now, tell me, how do you do that in IE 6 without tables?</p>
<p>This is when the CSS purists usually say to me, &#8220;well, you should just make a simpler layout&#8221;.  Right.</p>
<p>Now, if you think that&#8217;s bad, imagine what the Ext people have to deal with to work some of their magic with grids, and trees, and toolbars.  And keep it IE6 compatible.  And you&#8217;re going to harp on them, because they use tables sometimes?  You should be grateful it works at all.  When you get proper floats and margins, all &#8220;display&#8221; options (including inline-block), vertical-align, and max-width/min-width working in every major browser, then we can start preaching about the misuse of tables.  Until that day (and I don&#8217;t know about you, but I&#8217;m definitely looking forward to 7/13), let&#8217;s just be grateful we can accomplish these layouts in the first place.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ExtAnimal</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275876</link>
		<dc:creator>ExtAnimal</dc:creator>
		<pubDate>Fri, 09 Oct 2009 12:43:12 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275876</guid>
		<description>I see what you mean.

Well, I think that the TableLayout layout manager is not widely used for general layout of Components in Containers.

More likely since Ext 3 came out would be the &quot;box&quot; layouts, VBoxLayout and HBoxLayout which offer flexible sizing and laying out of child Components based on a scheme similar to that outlined here: http://ajaxian.com/archives/css-3-flexible-box-model</description>
		<content:encoded><![CDATA[<p>I see what you mean.</p>
<p>Well, I think that the TableLayout layout manager is not widely used for general layout of Components in Containers.</p>
<p>More likely since Ext 3 came out would be the &#8220;box&#8221; layouts, VBoxLayout and HBoxLayout which offer flexible sizing and laying out of child Components based on a scheme similar to that outlined here: <a href="http://ajaxian.com/archives/css-3-flexible-box-model" rel="nofollow">http://ajaxian.com/archives/css-3-flexible-box-model</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fzammetti</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275868</link>
		<dc:creator>fzammetti</dc:creator>
		<pubDate>Thu, 08 Oct 2009 22:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275868</guid>
		<description>@ExtAnimal: Let me clear by saying that I don&#039;t have a problem with what Ext JS does.  That being said...

There&#039;s a difference between a table for tabular data and tables within tables within tables and so on, which is what I remember seeing.  I don&#039;t know if recent versions have moved away from that, but that&#039;s what I remember seeing.  I think even the most ardent tables supporter would say that&#039;s probably not appropriate, when looked at from the point of view of CSS vs. tables for layout.</description>
		<content:encoded><![CDATA[<p>@ExtAnimal: Let me clear by saying that I don&#8217;t have a problem with what Ext JS does.  That being said&#8230;</p>
<p>There&#8217;s a difference between a table for tabular data and tables within tables within tables and so on, which is what I remember seeing.  I don&#8217;t know if recent versions have moved away from that, but that&#8217;s what I remember seeing.  I think even the most ardent tables supporter would say that&#8217;s probably not appropriate, when looked at from the point of view of CSS vs. tables for layout.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ExtAnimal</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275866</link>
		<dc:creator>ExtAnimal</dc:creator>
		<pubDate>Thu, 08 Oct 2009 20:38:32 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275866</guid>
		<description>&quot;I remember the generated markup for the Grid in particular being very table-y&quot;

Which is the most appropriate thing in the world. It&#039;s a table.</description>
		<content:encoded><![CDATA[<p>&#8220;I remember the generated markup for the Grid in particular being very table-y&#8221;</p>
<p>Which is the most appropriate thing in the world. It&#8217;s a table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fzammetti</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275858</link>
		<dc:creator>fzammetti</dc:creator>
		<pubDate>Thu, 08 Oct 2009 15:15:16 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275858</guid>
		<description>@JayGarcia: I basically agree with you, but the word &quot;irrelevant&quot; may be too strong.

Given some of the arguments against using tables for layout, things like bandwidth and CPU utilization and &quot;semantic&quot; correctness for example, it *does* I think matter, to some people at least, what Ext JS does underneath the covers.  From what I remember the last time I looked, Ext JS does in fact use tables quite a bit (I remember the generated markup for the Grid in particular being very table-y).

I agree that when you&#039;re developing an application with Ext this generally isn&#039;t your concern... I know it isn&#039;t mine, and I do *a lot* of work with Ext... but for those that are vehemently anti-tables for layout, I would expect they&#039;d raise the same sorts of objections and apply them to what Ext JS generates.

Then again, I could argue that using Ext, or any good toolkit like it, is another reason the CSS vs. tables argument is less important... the whole goal of abstractions, of which Ext JS certainly is one, is to hide details to make building more complex things easier (and obviously to stop reinventing the wheel every time).  At what point do you stop worrying entirely about the details of a given lower level of an abstraction?  Is one level removed OK, or do you need five before you don&#039;t care?  Or is there NEVER a time where you ignore the details? (at which point you&#039;ve got to wonder what the point of an abstraction is!)

I personally don&#039;t worry about what Ext JS produces code-wide (unless I have specific reason to), but at the same time I can see where someone else would be concerned with that... I wonder if that means that the &quot;CSS-only&quot; crew is inherently anti-Ext JS and indeed anti-any high-level GUI toolkit like it that isn&#039;t 100% CSS-based?  I&#039;d be willing to wager that few toolkits, if any, actually are as pure as the CSS-only folks say markup should be... Logically it seems like they&#039;d HAVE to be against these toolkits, no?</description>
		<content:encoded><![CDATA[<p>@JayGarcia: I basically agree with you, but the word &#8220;irrelevant&#8221; may be too strong.</p>
<p>Given some of the arguments against using tables for layout, things like bandwidth and CPU utilization and &#8220;semantic&#8221; correctness for example, it *does* I think matter, to some people at least, what Ext JS does underneath the covers.  From what I remember the last time I looked, Ext JS does in fact use tables quite a bit (I remember the generated markup for the Grid in particular being very table-y).</p>
<p>I agree that when you&#8217;re developing an application with Ext this generally isn&#8217;t your concern&#8230; I know it isn&#8217;t mine, and I do *a lot* of work with Ext&#8230; but for those that are vehemently anti-tables for layout, I would expect they&#8217;d raise the same sorts of objections and apply them to what Ext JS generates.</p>
<p>Then again, I could argue that using Ext, or any good toolkit like it, is another reason the CSS vs. tables argument is less important&#8230; the whole goal of abstractions, of which Ext JS certainly is one, is to hide details to make building more complex things easier (and obviously to stop reinventing the wheel every time).  At what point do you stop worrying entirely about the details of a given lower level of an abstraction?  Is one level removed OK, or do you need five before you don&#8217;t care?  Or is there NEVER a time where you ignore the details? (at which point you&#8217;ve got to wonder what the point of an abstraction is!)</p>
<p>I personally don&#8217;t worry about what Ext JS produces code-wide (unless I have specific reason to), but at the same time I can see where someone else would be concerned with that&#8230; I wonder if that means that the &#8220;CSS-only&#8221; crew is inherently anti-Ext JS and indeed anti-any high-level GUI toolkit like it that isn&#8217;t 100% CSS-based?  I&#8217;d be willing to wager that few toolkits, if any, actually are as pure as the CSS-only folks say markup should be&#8230; Logically it seems like they&#8217;d HAVE to be against these toolkits, no?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JayGarcia</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275856</link>
		<dc:creator>JayGarcia</dc:creator>
		<pubDate>Thu, 08 Oct 2009 14:24:20 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275856</guid>
		<description>The debate over CSS vs Table are irrelevant when placed in the context of layouts with Ext JS.</description>
		<content:encoded><![CDATA[<p>The debate over CSS vs Table are irrelevant when placed in the context of layouts with Ext JS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ExtAnimal</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275854</link>
		<dc:creator>ExtAnimal</dc:creator>
		<pubDate>Thu, 08 Oct 2009 10:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275854</guid>
		<description>&quot;A table should be used for TABULAR data&quot;

Err, yes. That&#039;s why there is the possibility to use layout: &#039;table&#039;

It&#039;s if you are wanting to present data in a tabular manner.

If not, use another layout!

(sheesh!)</description>
		<content:encoded><![CDATA[<p>&#8220;A table should be used for TABULAR data&#8221;</p>
<p>Err, yes. That&#8217;s why there is the possibility to use layout: &#8216;table&#8217;</p>
<p>It&#8217;s if you are wanting to present data in a tabular manner.</p>
<p>If not, use another layout!</p>
<p>(sheesh!)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275852</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Thu, 08 Oct 2009 08:39:43 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275852</guid>
		<description>ExtJS offers both approaches. There is the table layout for when you need it, and the hbox layout for when you want to lay out content horizontally, as well as the border layout for the typical west/center/east layout. It uses the most optimal html/css elements for each. For a table layout, the most efficient and performant markup is a table tag (why emulate a table in css when html already contains the primitive?).</description>
		<content:encoded><![CDATA[<p>ExtJS offers both approaches. There is the table layout for when you need it, and the hbox layout for when you want to lay out content horizontally, as well as the border layout for the typical west/center/east layout. It uses the most optimal html/css elements for each. For a table layout, the most efficient and performant markup is a table tag (why emulate a table in css when html already contains the primitive?).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fzammetti</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275847</link>
		<dc:creator>fzammetti</dc:creator>
		<pubDate>Thu, 08 Oct 2009 05:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275847</guid>
		<description>@Jadet: I&#039;ve had no trouble finding work regardless of what position I may hold on this... I produce results regardless of anything else and those that employ me reconize and very much appreciate that fact :)  In any case, I&#039;m not so much advocating one thing over another as I am simply pointing out that the debate is, IMO, a tired one (and that at least some of the talking points on the CSS side are, I believe, at least debatable... but to be fair, the same can be said of the pro-table camp&#039;s arguments).  

To me, it&#039;s akin to saying all planes should always be jet planes because jet planes are clearly better than prop-driven planes.  It&#039;s hard to dispute that by most criteria a jet plane wins, but there&#039;s plenty of people who would advocate the other way, and for quite valid reasons.  

I have no problem saying we should favor CSS, and that we should only use tables by exception, I think that&#039;s the right approach frankly.  To say you should ONLY EVER use CSS though, in my mind, is far too rigid a mindset... as a client, I&#039;d actually be more inclined to turn away someone who appears to have an inflexible mind over someone I might disagree with about something.</description>
		<content:encoded><![CDATA[<p>@Jadet: I&#8217;ve had no trouble finding work regardless of what position I may hold on this&#8230; I produce results regardless of anything else and those that employ me reconize and very much appreciate that fact :)  In any case, I&#8217;m not so much advocating one thing over another as I am simply pointing out that the debate is, IMO, a tired one (and that at least some of the talking points on the CSS side are, I believe, at least debatable&#8230; but to be fair, the same can be said of the pro-table camp&#8217;s arguments).  </p>
<p>To me, it&#8217;s akin to saying all planes should always be jet planes because jet planes are clearly better than prop-driven planes.  It&#8217;s hard to dispute that by most criteria a jet plane wins, but there&#8217;s plenty of people who would advocate the other way, and for quite valid reasons.  </p>
<p>I have no problem saying we should favor CSS, and that we should only use tables by exception, I think that&#8217;s the right approach frankly.  To say you should ONLY EVER use CSS though, in my mind, is far too rigid a mindset&#8230; as a client, I&#8217;d actually be more inclined to turn away someone who appears to have an inflexible mind over someone I might disagree with about something.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jadet</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275842</link>
		<dc:creator>Jadet</dc:creator>
		<pubDate>Wed, 07 Oct 2009 20:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275842</guid>
		<description>@fzammetti: Those are arguments a lot of people use who don&#039;t feel comfortable enough with CSS. When you have to make it as a freelancer you&#039;ll soon realise that the winner of the tables vs. no tables debate is CSS.
You won&#039;t get many high-end clients if you are still using tables for layout since those clients know what they are doing. They want maintainable code with seperation of styling and content and won&#039;t even consider you for the job if you are still advocating the use of tables.</description>
		<content:encoded><![CDATA[<p>@fzammetti: Those are arguments a lot of people use who don&#8217;t feel comfortable enough with CSS. When you have to make it as a freelancer you&#8217;ll soon realise that the winner of the tables vs. no tables debate is CSS.<br />
You won&#8217;t get many high-end clients if you are still using tables for layout since those clients know what they are doing. They want maintainable code with seperation of styling and content and won&#8217;t even consider you for the job if you are still advocating the use of tables.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fzammetti</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275841</link>
		<dc:creator>fzammetti</dc:creator>
		<pubDate>Wed, 07 Oct 2009 19:24:39 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275841</guid>
		<description>I love the whole tables versus no tables debate... has to be one of the more stupid debates in history.  Let&#039;s go over the reasons tables are stupid, as stated in the link provided by Jadet:

* &quot;mixes presentational data in with your content.&quot;

Ok, fine, I don&#039;t disagree, and the forward-thinking &quot;semantic web&quot; crowd have a valid point here.  But...

* &quot;This makes the file sizes of your pages unnecessarily large, as users must download this presentational data for each page they visit.&quot;

Err, if I DON&#039;T download presentational data for each page I visit, what in the BLUE HELL am I looking at on my screen?!?  CSS is wonderful, but CSS applied to no content looks like...umm... what&#039;s the phrase... A BLANK PAGE?!?  I don&#039;t know, seems like I have to download presentational data either way.  I suppose someone will come along and say I&#039;m defining &quot;presentational data&quot; wrong, so I&#039;m all ears.

* &quot;Bandwidth ain&#039;t free.&quot;

Yes, granted.  The whole &quot;size and speed of rendering&quot; argument is definitely valid.  However, have you ever really compared a complex CSS-based layout to a similarly-complex table-based layout?  I have.  Guess what?  The difference isn&#039;t typically that big a deal in terms of bandwidth utilization.  I&#039;ve even in one or two cases found the CSS approach to result in MORE bits going across the wire.  I&#039;m sure the CSS wasn&#039;t as perfectly-optimized as possible, but then, neither was the table layout!

Processing speed is the other typical argument, and while I accept that *generally* CSS-based layouts are less processor-intensive, I&#039;ve seen some cases were the exact opposite is true.  Remember, tables have been around before CSS (at least, CSS with any sort of complexity)... browsers are pretty well optimized for tables at this point and are I think only now being optimized really well for CSS, in the past 2-3 years maybe.

* &quot;This makes redesigns of existing sites and content extremely labor intensive (and expensive).&quot;

Again, while CSS is very cool, I&#039;ve in my entire life met so few people that find designing a CSS-based layout to be easier and faster than table-based layouts as to not be statistically important.  I agree, if you&#039;re an absolute CSS God it&#039;s probably no big deal to knock out virtually any layout, and it&#039;s certainly no more difficult for you than tables... but there&#039;s not many of those folks around frankly.  Most of us can manage what we need to with CSS, but it&#039;s often times a bit of a struggle.  You&#039;ll never convince me that designing with tables isn&#039;t easier and faster, and therefore cheaper and less labor-intensive, than a CSS-based layout, unless the layout is so simple that they&#039;re about the same anyway.  Maybe 10 years from now I&#039;ll say something different, but not now.

* &quot;It also makes it extremely hard (and expensive) to maintain visual consistency throughout a site.&quot;

If this is taken to mean that it&#039;s easier with a CSS-based layout to change the layout across an entire site, then yes, absolutely, no argument.  There&#039;s certainly server-side tricks you could play to make tales about as easy, but I&#039;m an RIA man myself, so even *I* don&#039;t like that answer :)

* &quot;Table-based pages are also much less accessible to users with disabilities and viewers using cell phones and PDAs to access the Web.&quot;

I want to see evidence of this.  I&#039;ve personally seen FAR better support of tables than CSS across constrained devices such as cell phone, and I dare say that screen readers can deal with tables just fine from what I&#039;ve seen.

I&#039;m not necessarily taking sides here... I think there&#039;s some fair points on both sides... but, it does seem that the CSS purists are the louder, more obnoxious side of the debate, and that turns me off.  At the end of the day, let&#039;s put the religion aside and just get our work done, how&#039;s that?? :)</description>
		<content:encoded><![CDATA[<p>I love the whole tables versus no tables debate&#8230; has to be one of the more stupid debates in history.  Let&#8217;s go over the reasons tables are stupid, as stated in the link provided by Jadet:</p>
<p>* &#8220;mixes presentational data in with your content.&#8221;</p>
<p>Ok, fine, I don&#8217;t disagree, and the forward-thinking &#8220;semantic web&#8221; crowd have a valid point here.  But&#8230;</p>
<p>* &#8220;This makes the file sizes of your pages unnecessarily large, as users must download this presentational data for each page they visit.&#8221;</p>
<p>Err, if I DON&#8217;T download presentational data for each page I visit, what in the BLUE HELL am I looking at on my screen?!?  CSS is wonderful, but CSS applied to no content looks like&#8230;umm&#8230; what&#8217;s the phrase&#8230; A BLANK PAGE?!?  I don&#8217;t know, seems like I have to download presentational data either way.  I suppose someone will come along and say I&#8217;m defining &#8220;presentational data&#8221; wrong, so I&#8217;m all ears.</p>
<p>* &#8220;Bandwidth ain&#8217;t free.&#8221;</p>
<p>Yes, granted.  The whole &#8220;size and speed of rendering&#8221; argument is definitely valid.  However, have you ever really compared a complex CSS-based layout to a similarly-complex table-based layout?  I have.  Guess what?  The difference isn&#8217;t typically that big a deal in terms of bandwidth utilization.  I&#8217;ve even in one or two cases found the CSS approach to result in MORE bits going across the wire.  I&#8217;m sure the CSS wasn&#8217;t as perfectly-optimized as possible, but then, neither was the table layout!</p>
<p>Processing speed is the other typical argument, and while I accept that *generally* CSS-based layouts are less processor-intensive, I&#8217;ve seen some cases were the exact opposite is true.  Remember, tables have been around before CSS (at least, CSS with any sort of complexity)&#8230; browsers are pretty well optimized for tables at this point and are I think only now being optimized really well for CSS, in the past 2-3 years maybe.</p>
<p>* &#8220;This makes redesigns of existing sites and content extremely labor intensive (and expensive).&#8221;</p>
<p>Again, while CSS is very cool, I&#8217;ve in my entire life met so few people that find designing a CSS-based layout to be easier and faster than table-based layouts as to not be statistically important.  I agree, if you&#8217;re an absolute CSS God it&#8217;s probably no big deal to knock out virtually any layout, and it&#8217;s certainly no more difficult for you than tables&#8230; but there&#8217;s not many of those folks around frankly.  Most of us can manage what we need to with CSS, but it&#8217;s often times a bit of a struggle.  You&#8217;ll never convince me that designing with tables isn&#8217;t easier and faster, and therefore cheaper and less labor-intensive, than a CSS-based layout, unless the layout is so simple that they&#8217;re about the same anyway.  Maybe 10 years from now I&#8217;ll say something different, but not now.</p>
<p>* &#8220;It also makes it extremely hard (and expensive) to maintain visual consistency throughout a site.&#8221;</p>
<p>If this is taken to mean that it&#8217;s easier with a CSS-based layout to change the layout across an entire site, then yes, absolutely, no argument.  There&#8217;s certainly server-side tricks you could play to make tales about as easy, but I&#8217;m an RIA man myself, so even *I* don&#8217;t like that answer :)</p>
<p>* &#8220;Table-based pages are also much less accessible to users with disabilities and viewers using cell phones and PDAs to access the Web.&#8221;</p>
<p>I want to see evidence of this.  I&#8217;ve personally seen FAR better support of tables than CSS across constrained devices such as cell phone, and I dare say that screen readers can deal with tables just fine from what I&#8217;ve seen.</p>
<p>I&#8217;m not necessarily taking sides here&#8230; I think there&#8217;s some fair points on both sides&#8230; but, it does seem that the CSS purists are the louder, more obnoxious side of the debate, and that turns me off.  At the end of the day, let&#8217;s put the religion aside and just get our work done, how&#8217;s that?? :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Darkimmortal</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275832</link>
		<dc:creator>Darkimmortal</dc:creator>
		<pubDate>Wed, 07 Oct 2009 15:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275832</guid>
		<description>Hurrr</description>
		<content:encoded><![CDATA[<p>Hurrr</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ajaxianreader123</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275831</link>
		<dc:creator>ajaxianreader123</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:49:11 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275831</guid>
		<description>And today&#039;s award for the guy who most loudly talks out of his butt: JoeMcCann!</description>
		<content:encoded><![CDATA[<p>And today&#8217;s award for the guy who most loudly talks out of his butt: JoeMcCann!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mdmadph</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275829</link>
		<dc:creator>mdmadph</dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:14:17 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275829</guid>
		<description>@JoeMcCann

1)  I don&#039;t know if the actual &quot;table&quot; tag is even used in an ExtJS table layout (completely different things).

2)  Microsoft Excel was not originally made to layout designs -- the &quot;table&quot; tag WAS originally made to provide a page layout.  Your analogy doesn&#039;t fit.</description>
		<content:encoded><![CDATA[<p>@JoeMcCann</p>
<p>1)  I don&#8217;t know if the actual &#8220;table&#8221; tag is even used in an ExtJS table layout (completely different things).</p>
<p>2)  Microsoft Excel was not originally made to layout designs &#8212; the &#8220;table&#8221; tag WAS originally made to provide a page layout.  Your analogy doesn&#8217;t fit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeMcCann</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275828</link>
		<dc:creator>JoeMcCann</dc:creator>
		<pubDate>Wed, 07 Oct 2009 13:58:57 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275828</guid>
		<description>...sorry got cut off

...but this would not be a quick sell for me to use ExtJS.</description>
		<content:encoded><![CDATA[<p>&#8230;sorry got cut off</p>
<p>&#8230;but this would not be a quick sell for me to use ExtJS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JoeMcCann</title>
		<link>http://ajaxian.com/archives/ext-js-in-action-the-table-layout/comment-page-1#comment-275827</link>
		<dc:creator>JoeMcCann</dc:creator>
		<pubDate>Wed, 07 Oct 2009 13:58:18 +0000</pubDate>
		<guid isPermaLink="false">http://ajaxian.com/?p=7600#comment-275827</guid>
		<description>Sorry, but using the  tag for layout is STILL full of fail.  There are way too many reasons NOT to use the  tag for layout.  A table should be used for TABULAR data.  Would you use Microsoft Excel to layout your design?  I appreciate the free chapter, but this would not</description>
		<content:encoded><![CDATA[<p>Sorry, but using the  tag for layout is STILL full of fail.  There are way too many reasons NOT to use the  tag for layout.  A table should be used for TABULAR data.  Would you use Microsoft Excel to layout your design?  I appreciate the free chapter, but this would not</p>
]]></content:encoded>
	</item>
</channel>
</rss>

