<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5999873806365877684</id><updated>2012-02-16T18:02:04.321-07:00</updated><title type='text'>#Sharply Flexing</title><subtitle type='html'>Most things Flex, sometimes C# but always Enterprise</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://tntomek.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5999873806365877684/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://tntomek.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Tom Gruszowski</name><uri>http://www.blogger.com/profile/01482203400524942003</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5999873806365877684.post-1545694542054299705</id><published>2010-03-05T00:32:00.000-07:00</published><updated>2010-03-05T00:32:21.454-07:00</updated><title type='text'>Some Othe rpost</title><content type='html'>This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5999873806365877684-1545694542054299705?l=tntomek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tntomek.blogspot.com/feeds/1545694542054299705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tntomek.blogspot.com/2010/03/some-othe-rpost.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5999873806365877684/posts/default/1545694542054299705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5999873806365877684/posts/default/1545694542054299705'/><link rel='alternate' type='text/html' href='http://tntomek.blogspot.com/2010/03/some-othe-rpost.html' title='Some Othe rpost'/><author><name>Tom Gruszowski</name><uri>http://www.blogger.com/profile/01482203400524942003</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-5999873806365877684.post-5462012163995301274</id><published>2010-03-04T23:01:00.002-07:00</published><updated>2010-03-05T00:31:36.618-07:00</updated><title type='text'>Dynamic column DataGrid/AdvancedDataGrid</title><content type='html'>This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog &lt;br /&gt;&lt;br /&gt;&lt;script type="syntaxhighlighter" class="brush: html"&gt;&lt;![CDATA[&lt;?xml version="1.0" encoding="utf-8"?&gt;&lt;mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" verticalAlign="middle" horizontalAlign="center" backgroundColor="white"layout="vertical" minWidth="100%" minHeight="100%"&gt;&lt;mx:Script&gt;&lt;![CDATA[import mx.collections.ArrayCollection;[Bindable] private var rows:ArrayCollection =new ArrayCollection([{product: 'Ski',   price0: 10, price1: 20, price2: 30, price3: 40, price4: 50, price5: 60},{product: 'Sword', price0: 0,  price1: 0,  price2: 3,  price3: 4,  price4: 0, price5: 0},{product: 'Beer', price0: 5,  price1: 5,  price2: 6,  price3: 4,  price4: 4, price5: 5}]);]]&gt;&lt;/mx:Script&gt;&lt;mx:DataGrid width="400" height="150" lockedColumnCount="1" horizontalScrollPolicy="on" dataProvider="{rows}"&gt;&lt;mx:columns&gt;&lt;mx:DataGridColumn headerText="Product" dataField="product" width="100" /&gt;&lt;mx:DataGridColumn headerText="Jan 2010" dataField="price0" width="75"/&gt;&lt;mx:DataGridColumn headerText="Feb 2010" dataField="price1" width="75" /&gt;&lt;mx:DataGridColumn headerText="Mar 2010" dataField="price2" width="75" /&gt;&lt;mx:DataGridColumn headerText="Apr 2010" dataField="price3" width="75" /&gt;&lt;mx:DataGridColumn headerText="May 2010" dataField="price4" width="75" /&gt;&lt;mx:DataGridColumn headerText="June 2010" dataField="price5" width="75" /&gt;&lt;/mx:columns&gt;&lt;/mx:DataGrid&gt;&lt;/mx:Application&gt;]]&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;br /&gt;&lt;br /&gt;This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog This is the blog&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5999873806365877684-5462012163995301274?l=tntomek.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://tntomek.blogspot.com/feeds/5462012163995301274/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://tntomek.blogspot.com/2010/03/cdata.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5999873806365877684/posts/default/5462012163995301274'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5999873806365877684/posts/default/5462012163995301274'/><link rel='alternate' type='text/html' href='http://tntomek.blogspot.com/2010/03/cdata.html' title='Dynamic column DataGrid/AdvancedDataGrid'/><author><name>Tom Gruszowski</name><uri>http://www.blogger.com/profile/01482203400524942003</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
