<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: HTML Tables in Flex</title>
	<atom:link href="http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/</link>
	<description></description>
	<lastBuildDate>Mon, 23 Nov 2009 14:56:23 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: subeesh</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-29</link>
		<dc:creator>subeesh</dc:creator>
		<pubDate>Wed, 24 Sep 2008 08:58:03 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-29</guid>
		<description>Hi Chris,

Take a look at the code

Subeesh</description>
		<content:encoded><![CDATA[<p>Hi Chris,</p>
<p>Take a look at the code</p>
<p>Subeesh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Johnson</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-28</link>
		<dc:creator>Chris Johnson</dc:creator>
		<pubDate>Tue, 23 Sep 2008 20:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-28</guid>
		<description>Subeesh, the problems you describe have been my life for the past month.  After paying the $150 for HTMLComponent I decided to dump it because I could not overcome the focus issues with flex textboxes and HTMLComponent+FCKEditor in the same window

I am currently scouring the internet for a solution like you mention to parse a html table to a flex grid.  I would love to see yours.  email: chris@clickonchris.com

And I have to wonder if this is the same Craig who posted to this mailing list: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg92856.html</description>
		<content:encoded><![CDATA[<p>Subeesh, the problems you describe have been my life for the past month.  After paying the $150 for HTMLComponent I decided to dump it because I could not overcome the focus issues with flex textboxes and HTMLComponent+FCKEditor in the same window</p>
<p>I am currently scouring the internet for a solution like you mention to parse a html table to a flex grid.  I would love to see yours.  email: <a href="mailto:chris@clickonchris.com">chris@clickonchris.com</a></p>
<p>And I have to wonder if this is the same Craig who posted to this mailing list: <a href="http://www.mail-archive.com/flexcoders@yahoogroups.com/msg92856.html" rel="nofollow">http://www.mail-archive.com/flexcoders@yahoogroups.com/msg92856.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: subeesh</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-20</link>
		<dc:creator>subeesh</dc:creator>
		<pubDate>Thu, 22 May 2008 04:53:31 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-20</guid>
		<description>I think the html table structure you are trying to show it in flex will be similar to this structure



	
		 row 1 column 1 
		 row 1 column 2 
		
	

	
		 row 2 column 1 
		 row 2 column 2 
		
	


I have used regular expression for filtering the required html table sections.

First i have used a regular expression to filter the  tag. When that regex is applied to the string, the string will contain only the table information like the above one. This is the table expression to match the table tag from the rest of the html tags.

Once we parse out the table structure, now we can look for the Rows( tags ). Again we use a regular expression on the string obtained ( this time an expression to filter rows). Now we will get an array of  tags. In this case an array of length 2. The length of the array is the number of rows in the table. 

Now we have to loop through this array and again apply a regular expression to parse the  tags . If we do that we will get an array conating the tds in that row. This contains the table data.

You can store these arrays in a nested structure and use that structure to populate the flex grid component.

I will try to post a code snippet next time so that you will get a better idea of what i am talking about</description>
		<content:encoded><![CDATA[<p>I think the html table structure you are trying to show it in flex will be similar to this structure</p>
<p>		 row 1 column 1<br />
		 row 1 column 2 </p>
<p>		 row 2 column 1<br />
		 row 2 column 2 </p>
<p>I have used regular expression for filtering the required html table sections.</p>
<p>First i have used a regular expression to filter the  tag. When that regex is applied to the string, the string will contain only the table information like the above one. This is the table expression to match the table tag from the rest of the html tags.</p>
<p>Once we parse out the table structure, now we can look for the Rows( tags ). Again we use a regular expression on the string obtained ( this time an expression to filter rows). Now we will get an array of  tags. In this case an array of length 2. The length of the array is the number of rows in the table. </p>
<p>Now we have to loop through this array and again apply a regular expression to parse the  tags . If we do that we will get an array conating the tds in that row. This contains the table data.</p>
<p>You can store these arrays in a nested structure and use that structure to populate the flex grid component.</p>
<p>I will try to post a code snippet next time so that you will get a better idea of what i am talking about</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Craig</title>
		<link>http://subeesh.wordpress.com/2008/02/16/html-tables-in-flex/#comment-19</link>
		<dc:creator>Craig</dc:creator>
		<pubDate>Thu, 22 May 2008 02:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://subeesh.wordpress.com/?p=7#comment-19</guid>
		<description>I am interested in how to create html table to display in grid, but not sure what you are talking about. You are parsing out the html table tags and then displaying?
Not sure what this means...
Craig</description>
		<content:encoded><![CDATA[<p>I am interested in how to create html table to display in grid, but not sure what you are talking about. You are parsing out the html table tags and then displaying?<br />
Not sure what this means&#8230;<br />
Craig</p>
]]></content:encoded>
	</item>
</channel>
</rss>
