<?xml version="1.0" encoding="utf-8"?>

			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ColdFusion RIA - Yahoo User Interface (YUI)</title>
			<link>http://www.coldfusion-ria.com/Blog/index.cfm</link>
			<description>Discovering ColdFusion based RIA Development and Blogging about it</description>
			<language>en-us</language>
			<pubDate>Tue, 07 Sep 2010 12:36:19 -0400</pubDate>
			<lastBuildDate>Sat, 17 Jan 2009 18:11:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>shahkumar@gmail.com</managingEditor>
			<webMaster>shahkumar@gmail.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>shahkumar@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			<item>
				<title>Yahoo User Interface (YUI) Base CSS with Coldfusion 8 cfgrid conflicts</title>
				<link>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/17/Yahoo-User-Interface-YUI-Base-CSS-with-Coldfusion-8-cfgrid-conflicts</link>
				<description>
				
				So, while working on integrating the cfgrid with my demo application, I came accross a conflicts with the CSS that ColdFusion expects to produce for an HTML cfgrid versus the CSS markup from the &lt;a href=&quot;http://developer.yahoo.com/yui/base/&quot; target=&quot;_blank&quot;&gt;YUI Base CSS&lt;/a&gt; component.

Check It Out &lt;a href=&quot;http://coldfusion-ria.com/blog/examples/usersc.cfm&quot; target=&quot;_blank&quot;&gt;Here&lt;/a&gt;

So, what the Base CSS package does is,
&lt;blockquote&gt;
&lt;p&gt;
applies a consistent style foundation for common HTML elements
&lt;/p&gt;
&lt;/blockquote&gt;

This creates a conflict with the ColdFusion CSS package (which is based on Ext 1.1.1 API). At the same time, you could use this to extend the Base CSS file and define your own styles for the elements. Right now, I just removed Base CSS from my application. 
				</description>
				
				<category>ColdFusion 8</category>
				
				<category>Web Development</category>
				
				<category>CSS</category>
				
				<category>Yahoo User Interface (YUI)</category>
				
				<category>Ajax</category>
				
				<pubDate>Sat, 17 Jan 2009 18:11:00 -0400</pubDate>
				<guid>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/17/Yahoo-User-Interface-YUI-Base-CSS-with-Coldfusion-8-cfgrid-conflicts</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 8 cfgrid - Implementing User Selected PageSize and using YUI Dom Collection Library</title>
				<link>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/15/ColdFusion-8-cfgrid--Implementing-User-Selected-PageSize-and-using-YUI-Dom-Collection-Library</link>
				<description>
				
				Previously I blogged about implementing a filter feature and ability to show/hide columns in the grid &lt;a href=&quot;http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/13/Playing-with-cfgrid--Filter-showhide-Columns-and-using-the-YUI-Buttons-library&quot; target=&quot;_blank&quot;&gt;Here&lt;/a&gt;. We are going to make another small enhancement to it, we will allow the User to select how many records to display per page (from a pre-defined list). We will also use some powerful &lt;a href=&quot;http://developer.yahoo.com/yui/dom/&quot; target=&quot;_blank&quot;&gt;Yahoo User Interface (YUI) Do&lt;/a&gt; functions to implement this. 
&lt;p&gt;
A new demo is available &lt;a href=&quot;http://coldfusion-ria.com/blog/examples/usersb.cfm&quot; target=&quot;_blank&quot;&gt;Here&lt;/a&gt;.

&lt;img src=&quot;http://www.coldfusion-ria.com/Blog/images/gridpic.PNG&quot; border=&quot;1&quot;&gt;
&lt;/p&gt;  [More]
				</description>
				
				<category>ColdFusion 8</category>
				
				<category>Web Development</category>
				
				<category>Yahoo User Interface (YUI)</category>
				
				<category>RIA</category>
				
				<category>Ajax</category>
				
				<pubDate>Thu, 15 Jan 2009 18:46:00 -0400</pubDate>
				<guid>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/15/ColdFusion-8-cfgrid--Implementing-User-Selected-PageSize-and-using-YUI-Dom-Collection-Library</guid>
				
				
			</item>
			
			<item>
				<title>ColdFusion 8 cfgrid - Filter Grid Data, Show/Hide Columns and using the YUI Buttons Library</title>
				<link>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/13/Playing-with-cfgrid--Filter-showhide-Columns-and-using-the-YUI-Buttons-library</link>
				<description>
				
				The next step in the Project will be the User Administration page. The idea for the administration pages is simple:
&lt;ol&gt;
&lt;li&gt;&lt;span&gt;Pagination (min 10 records per page)&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Sorting on all columns&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Ability to Filter grid Data by various columns&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;User Preferences to show/hide columns on the grid&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;Add/Edit/Delete Function Access from grid page&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;
The ColdFusion 8 &lt;a href=&quot;http://cfquickdocs.com/#cfgrid&quot; target=&quot;_blank&quot;&gt;cfgrid&lt;/a&gt; implementation allows us to accomplish points 1 and 2 out of the box. CF8 Ajax featurs will allow us to accomplish point 3. Further looking into the ExtJS library means we can do 4 too. We will worry about point 5 for later.


First, check out the little Demo: &lt;a href=&quot;http://coldfusion-ria.com/blog/examples/users.cfm&quot; target=&quot;_blank&quot;&gt;cfgrid demo&lt;/a&gt;
&lt;/p&gt;  [More]
				</description>
				
				<category>ColdFusion 8</category>
				
				<category>Web Development</category>
				
				<category>Yahoo User Interface (YUI)</category>
				
				<category>RIA</category>
				
				<category>Ajax</category>
				
				<pubDate>Tue, 13 Jan 2009 14:08:00 -0400</pubDate>
				<guid>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/13/Playing-with-cfgrid--Filter-showhide-Columns-and-using-the-YUI-Buttons-library</guid>
				
				
			</item>
			
			<item>
				<title>Implementing Browser History Management to the Application</title>
				<link>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/12/Implementing-The-YUI-Browser-History-Manager-</link>
				<description>
				
				I previously blogged on the &lt;a href=&quot;http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/8/Browser-History-Management-for-ColdFusion-8-Ajax-using-the-Yahoo-Interface-Library-YUI&quot;&gt;YUI History Manager&lt;/a&gt; (read it up if you haven&apos;t). I just got around to implementing it to an Application&lt;p&gt;

Now, I like to include my javascript at the top of the page (and I think most people do). This meant I had to switch some things around.
&lt;/p&gt;  [More]
				</description>
				
				<category>ColdFusion 8</category>
				
				<category>Web Development</category>
				
				<category>Yahoo User Interface (YUI)</category>
				
				<category>RIA</category>
				
				<category>Ajax</category>
				
				<pubDate>Mon, 12 Jan 2009 11:42:00 -0400</pubDate>
				<guid>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/12/Implementing-The-YUI-Browser-History-Manager-</guid>
				
				
			</item>
			
			<item>
				<title>Browser History Management for ColdFusion 8 Ajax using the Yahoo Interface Library (YUI)</title>
				<link>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/8/Browser-History-Management-for-ColdFusion-8-Ajax-using-the-Yahoo-Interface-Library-YUI</link>
				<description>
				
				One of the things about loading pages using Ajax (not refreshing the page) is that the browser back/forward buttons stop working. Since you are not refreshing the page the browser doesn&apos;t record to its history engine.

ColdFusion 8 does not implement automatic browser history management for ColdFusion.navigate and AjaxLink (do it with 9 Adobe). That meant either build your own solution, or in this case I decided to use the &lt;a href=&quot;http://developer.yahoo.com/yui/history/&quot; target=&quot;_blank&quot;&gt; YUI Browser History Manager&lt;/a&gt;. So lets see how it was done.

Demo the the implementation &lt;a href=&quot;http://www.coldfusion-ria.com/Blog/examples/history2.cfm&quot; target=&quot;_blank&quot;&gt;Here&lt;/a&gt;.  [More]
				</description>
				
				<category>ColdFusion 8</category>
				
				<category>Web Development</category>
				
				<category>Yahoo User Interface (YUI)</category>
				
				<category>RIA</category>
				
				<category>Ajax</category>
				
				<pubDate>Thu, 08 Jan 2009 18:33:00 -0400</pubDate>
				<guid>http://www.coldfusion-ria.com/Blog/index.cfm/2009/1/8/Browser-History-Management-for-ColdFusion-8-Ajax-using-the-Yahoo-Interface-Library-YUI</guid>
				
				
			</item>
			</channel></rss>