<?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>Against All Odds - iPad</title>
			<link>http://www.ppshein.net/index.cfm</link>
			<description>A blog for ColdFusion, Android, jQuery, jQueryMobile, Oracle, HL7 and other Web-based programming languages, Web Server like IIS7 and RDMS like Oracle, Microsoft SQL and MySQL.</description>
			<language>en-us</language>
			<pubDate>Tue, 21 May 2013 09:18:33 -0700</pubDate>
			<lastBuildDate>Wed, 11 May 2011 18:15:00 -0700</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>pyaephyoeshein@gmail.com</managingEditor>
			<webMaster>pyaephyoeshein@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>pyaephyoeshein@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Useful Tools, Template and Design for iPad and iPhone</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/11/Useful-Tools-Template-and-Design-for-iPad-and-iPhone</link>
				<description>
				
				&lt;p&gt;In these days, I&apos;m on developing web based Mobile Tablet project for especially iPad. That&apos;s why I need more information about iPad such as framework, template and Design for coming out nice GUI design. For actually development, I&apos;ve used &lt;a href=&quot;http://jquerymobile.com/&quot; target=&quot;_blank&quot;&gt;jQueryMobile&lt;/a&gt; of course because it&apos;s kinda flexiable and reliable. But I gotta know which other else framework and template are avaliable for web mobile development. For that case, I&apos;ve found this website &lt;a href=&quot;http://webdesignledger.com&quot; target=&quot;_blank&quot;&gt;http://webdesignledger.com &lt;/a&gt;has a lot of information for iPhone and iPad development articles. Among them, I&apos;d love to read the following three articles for iPad development.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://webdesignledger.com/freebies/11-ui-kits-for-iphone-and-ipad-development&quot; target=&quot;_blank&quot;&gt;http://webdesignledger.com/freebies/11-ui-kits-for-iphone-and-ipad-development&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://webdesignledger.com/tools/10-best-ipad-apps-for-web-designers&quot; target=&quot;_blank&quot;&gt;http://webdesignledger.com/tools/10-best-ipad-apps-for-web-designers&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://webdesignledger.com/inspiration/30-inspiring-ipad-app-websites&quot; target=&quot;_blank&quot;&gt;http://webdesignledger.com/inspiration/30-inspiring-ipad-app-websites&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope above three articles will be useful for someone who is trying to implement Web Tablet Development like me.&lt;/p&gt;
				
				</description>
				
				
				<category>iPhone</category>
				
				<category>iPad</category>
				
				<category>Android</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Wed, 11 May 2011 18:15:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/11/Useful-Tools-Template-and-Design-for-iPad-and-iPhone</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple jQueryMobile Keypad</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/9/Simple-jQueryMobile-Keypad</link>
				<description>
				
				Currently, I&apos;m on web based mobile project for our current project. That&apos;s why I&apos;ve developed this project with jQueryMobile framework because it&apos;s very simple and reliable to use for developers like us. In jQueryMobile, almost features are cool like calendar plugin, date plugin, etc. For me, keypad plugin is missing and I feel isn&apos;t not urgently needed because we can use mobile phone keypad as well. Unfortunately, my senior urged me to add KeyPad feature in our project. That&apos;s why I&apos;m about to develop it by my own.

First of all, I need to write following coding in index.cfm.

&lt;code&gt;
&lt;label&gt;Enter Phone Number&lt;/label&gt;
&lt;!--- store current DOM ---&gt;
&lt;input type=&quot;hidden&quot; name=&quot;currentDOM&quot; id=&quot;currentDOM&quot;&gt;
&lt;input type=&quot;text&quot; name=&quot;phone&quot; data-inline=&quot;true&quot; id=&quot;phone&quot; maxlength=&quot;8&quot; /&gt;&lt;/td&gt;
&lt;a href=&quot;keypad.html&quot; 
	data-role=&quot;button&quot; 
	onclick=&quot;setFocus(&apos;phone&apos;)&quot; 
	data-iconpos=&quot;notext&quot; 
	data-inline=&quot;true&quot; 
	data-rel=&quot;dialog&quot; 
	data-transition=&quot;pop&quot; 
	data-icon=&quot;gear&quot;&gt;&amp;nbsp;&lt;/a&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>iPad</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Mon, 09 May 2011 21:46:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/9/Simple-jQueryMobile-Keypad</guid>
				
				
			</item>
			
		 	
			</channel></rss>