<?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 - jQueryMobile</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>Thu, 23 May 2013 08:37:42 -0700</pubDate>
			<lastBuildDate>Fri, 22 Jul 2011 18:28: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>My first web based mobile project</title>
				<link>http://www.ppshein.net/index.cfm/2011/7/22/My-first-web-based-mobile-project</link>
				<description>
				
				Here is my first web-based project for my company. Our target is for customer who want to register Patient thru online. This project is based for iPad but it can work either on Android based tablet. For this project, I&apos;ve used jQueryMobile framework, Coldfusion 9 and Oracle 11g. For jQueryMobile part, I&apos;ve created our own customize theme for this project and added some JS coding into jQueryMobile existing scripts. Just example: my boss want me to highlight which field has been filled up by users and need to categorize for mandatory field. As you know, it&apos;s difficult to change or add some JS coding into their existing core JS file because we need to know the flow of existing JS coding. Likewise, what we add or change JS coding will impact the whole existing JS coding. I took 2 days to study the whole existing JS coding but it&apos;s not enough time honestly for it.

Below is some of my change logs into jQueryMobile existing JS coding for this project.
				 [More]
				</description>
				
				
				<category>Oracle</category>
				
				<category>Project</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Fri, 22 Jul 2011 18:28:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/7/22/My-first-web-based-mobile-project</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Change jQueryMobile default selected value in select box</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/23/Change-jQueryMobile-default-selected-value-in-select-box</link>
				<description>
				
				&lt;p&gt;Today what I&apos;ve successfully done is I can change the color of default selected value in select box with jQueryMobile. Frankly, this feature is missing in jQueryMobile because nobody can obviously know whether any value is selected in select box or not. Because they missed out to let users know about it. That&apos;s why I need to add the customize function of myself.&lt;/p&gt;
&lt;p&gt;First of all, we need to search the following coding in jquerymobile javascript.&lt;/p&gt;

&lt;code&gt;
	selectedIndex = select[0].selectedIndex == -1 ? 0 : select[0].selectedIndex,
&lt;/code&gt;

&lt;p&gt;Then, we need to add the following customize coding after that,&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>jQueryMobile</category>
				
				<category>Stylesheet</category>
				
				<pubDate>Mon, 23 May 2011 01:23:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/23/Change-jQueryMobile-default-selected-value-in-select-box</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Change jQueryMobile Select Box active style color in iPad safari</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/19/Change-jQueryMobile-Select-Box-active-style-color-in-iPad-safari</link>
				<description>
				
				Today, I&apos;m very happy that I can change jQueryMobile select Box active style color in iPad safari. Because, current active style &quot;&lt;b&gt;.ui-btn-active&lt;/b&gt;&quot; is 100% working for other inputs like text, radio and checkbox but for select box, it doesn&apos;t completely work in iPad safari. My boss told me that I need to change all of active input color to &quot;dark blue&quot; instead of default color. That&apos;s why I need to change and already played in existing jQueryMobile stylesheet file. But it doesn&apos;t work at all. That&apos;s why I think I need to hack jQueryMobile existing javascript. After 30 minutes, I found that there are three places I need to change in jQueryMobile existing stylesheet. 

The first part is I need to add new class name for active select box in stylesheet.

&lt;code&gt;
.ui-select-active {color:#0000a0; text-shadow: 0 -1px 1px #ffffff;}
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>Javascript</category>
				
				<category>jQueryMobile</category>
				
				<category>Stylesheet</category>
				
				<pubDate>Thu, 19 May 2011 22:41:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/19/Change-jQueryMobile-Select-Box-active-style-color-in-iPad-safari</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>How to make square shape button in jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/17/How-to-make-square-shape-button-in-jQueryMobile</link>
				<description>
				
				As I mentioned in my older posts, I&apos;m really on web-based mobile tablet project for our existing project. Honestly, this web-based mobile tablet project is our first mobile project for our company. That&apos;s why all of requirements are so high and trying to got impressive from our clients. Among them, they urged me to create square shape button in jQueryMobile instead of existing them. As we all know, the existing stylesheet coding of jQueryMobile is very unit, thick and complex and if you change something in it, the impact will be so high. That&apos;s why I don&apos;t want to change anything in it except theme creating but they want square shape so no choice.

So, I&apos;ve changed the following coding like that.

&lt;code&gt;
&lt;!--- line 1413 ---&gt;

.ui-btn-inner { 
	padding: 2em; 
	display: block; 
	height: 100%; 
	text-overflow: ellipsis; 
	overflow: hidden; 
	white-space: nowrap; 
	position: relative;
}
&lt;/code&gt;

After changing it so and rendered it, I&apos;ve got the odd outcome. Please see the image. Because it changes to all of input like drop down, checkbox and radio.
				 [More]
				</description>
				
				
				<category>jQueryMobile</category>
				
				<category>Stylesheet</category>
				
				<pubDate>Tue, 17 May 2011 02:45:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/17/How-to-make-square-shape-button-in-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<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>
			
		 	
			
			
			<item>
				<title>Increase the width of select box in jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/5/6/Increase-the-width-of-select-box-in-jQueryMobile</link>
				<description>
				
				Currently, I&apos;m on web based mobile project by using jQueryMobile framework. As I already mentioned in my previous posts, jQueryMobile is really awesome and very simple to develop web based mobile project for even user-level developers. But, we cannot easily change the built-in theme of their existing style. Because all of infrastructure of existing styles are transformed by javascript coding of jQuery and styling with CSS a little after. 

Today, I was on trouble about the width and display style of select box in jQueryMobile. Oddly, the width is neither 100% nor 50% and seems display style is &lt;b&gt;Block&lt;/b&gt; type. That&apos;s why I cannot put horizontally two select boxes within in the same DIV. That&apos;s why I feel I need to change any coding in stylesheet of jQueryMobile. So open jQueryMobile stylesheet and changed the following two coding for the sake of my project.
				 [More]
				</description>
				
				
				<category>jQuery</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<category>Stylesheet</category>
				
				<pubDate>Fri, 06 May 2011 07:02:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/5/6/Increase-the-width-of-select-box-in-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>BlogCFC simple add mobile ON/OFF feature with jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/30/BlogCFC-simple-add-mobile-ONOFF-feature-with-jQueryMobile</link>
				<description>
				
				Yesterday I&apos;ve added mobile version on/off feature in my blog with jQueryMobile. As we know, this mobile version on/off feature is already in BlogCFC. For my side, just put jQueryMobile button and add simple javascript.

Here is my change log in &lt;b&gt;index.cfm&lt;/b&gt; file of BlogCFC mobile folder.

&lt;code&gt;
&lt;div data-role=&quot;fieldcontain&quot; align=&quot;center&quot;&gt;
	&lt;label for=&quot;slider&quot;&gt;Mobile Version:&lt;/label&gt;
	&lt;select name=&quot;slider&quot; id=&quot;slider&quot; data-role=&quot;slider&quot;&gt;
		&lt;option value=&quot;nomobile&quot;&gt;Off&lt;/option&gt;
		&lt;option value=&quot;&quot;&gt;On&lt;/option&gt;
	&lt;/select&gt; 
&lt;/div&gt;
&lt;/code&gt;
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Wed, 30 Mar 2011 23:16:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/30/BlogCFC-simple-add-mobile-ONOFF-feature-with-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Pagination in BlogCFC with jQuery Mobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/3/18/Pagination-in-BlogCFC-with-jQuery-Mobile</link>
				<description>
				
				I&apos;ve wrote &lt;a href=&quot;http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile&quot; target=&quot;_blank&quot;&gt;how to integrate blogCFC into jQuerymobile.&lt;/a&gt; Honestly, it&apos;s just simple integration and don&apos;t have pagination features and comments at that time. Because it&apos;s my testing purpose and just want to play jQueryMobile. Now, it&apos;s time for me to add pagination feature in blogCFC with jQueryMobile. For about that, we need to add some codings in &lt;b&gt;index.cfm&lt;/b&gt; and completely don&apos;t need to include &lt;b&gt;posts.cfm&lt;/b&gt; from &lt;b&gt;index.cfm&lt;/b&gt; of blogCFC mobile folder. Because I just took some coding reference from existing mobile version of blogCFC.

First of all, we need to declare following two parameters in &lt;b&gt;index.cfm&lt;/b&gt;.

&lt;code&gt;
&lt;cfparam name=&quot;curPage&quot; default=&quot;1&quot;&gt;
&lt;cfparam name=&quot;Page&quot; default=&quot;1&quot;&gt;
&lt;/code&gt;

After that, we need to replace the following coding from existing &quot;&lt;b&gt;posts.cfm&lt;/b&gt;&quot; instead of  &quot;&lt;b&gt;including=posts.cfm&lt;/b&gt;&quot;. In this point, I&apos;ve changed some codes and add any needed function into it.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Fri, 18 Mar 2011 03:25:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/3/18/Pagination-in-BlogCFC-with-jQuery-Mobile</guid>
				
				
				<enclosure url="http://www.ppshein.net/enclosures/index.rar" length="1485" type="application/x-rar-compressed"/>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Simple change BlogCFC mobile version to jQueryMobile</title>
				<link>http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile</link>
				<description>
				
				Yesterday I&apos;ve upgraded my blogCFC mobile version to &lt;a href=&quot;http://jquerymobile.com/&quot; target=&quot;_blank&quot;&gt;jQueryMobile&lt;/a&gt;. Currently, blogCFC use jQtouch as their mobile version. Once I saw jQueryMobile, I want to upgrade and test it at my site. Installation jQueryMobile is kinda simple.

First of all, we need to include following stylesheet and JS file into our CFM page.

&lt;code&gt;
[link rel=&quot;stylesheet&quot; href=&quot;jquery.mobile-1.0a2.min.css&quot; /]
[script src=&quot;jquery-1.4.3.min.js&quot;][/script]
[script src=&quot;jquery.mobile-1.0a2.min.js&quot;][/script]
&lt;/code&gt; 

After that, we need to change a bit of blogCFC mobile version index file like that.
				 [More]
				</description>
				
				
				<category>BlogCFC</category>
				
				<category>Coldfusion</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Sun, 09 Jan 2011 18:37:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2011/1/9/Simple-change-BlogCFC-mobile-version-to-jQueryMobile</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>jqTouch and jqPlot</title>
				<link>http://www.ppshein.net/index.cfm/2009/11/13/jqtouch-and-jqplot</link>
				<description>
				
				&lt;p&gt;When I browse my &lt;a href=&quot;http://twitter.com/ppshein&quot; target=&quot;_blank&quot;&gt;twitter&lt;/a&gt; this morning, I&apos;ve found two amazing jQuery cores tweeted by &lt;a href=&quot;http://www.coldfusionjedi.com/&quot; target=&quot;_blank&quot;&gt;Raymond Camdem&lt;/a&gt;. These are called &lt;a href=&quot;http://jqtouch.com/&quot; target=&quot;_blank&quot;&gt;jqTouch&lt;/a&gt; and &lt;a href=&quot;http://www.jqplot.com/&quot; target=&quot;_blank&quot;&gt;jqPlot&lt;/a&gt;.
&lt;a href=&quot;http://jqtouch.com/&quot; target=&quot;_blank&quot;&gt;jqTouch&lt;/a&gt; stands for mobile development for iPhone, iPod and iPad. It&apos;s just for only mobile &lt;strong&gt;web&lt;/strong&gt; development, not for mobile &lt;strong&gt;application&lt;/strong&gt; development.
&lt;a href=&quot;http://www.jqplot.com&quot; target=&quot;_blank&quot;&gt;jqPlot&lt;/a&gt; stands for charting. It&apos;s not that much cool like &lt;a href=&quot;http://jqtouch.com/&quot; target=&quot;_blank&quot;&gt;jqTouch&lt;/a&gt;. Because Coldfusion already supports Charting and which can be integrated with 3rdparty application like &lt;a href=&quot;http://www.gpoint.com/&quot; target=&quot;_blank&quot;&gt;WebCharts3D&lt;/a&gt;. After browsing &lt;a href=&quot;http://www.jqplot.com/&quot; target=&quot;_blank&quot;&gt;jqPlot&lt;/a&gt;, I feel onClick event is missing in these core function. I think it will be included in next version or let me know if you found these event in it.&lt;/p&gt;
				
				</description>
				
				
				<category>jQuery</category>
				
				<category>jQueryMobile</category>
				
				<pubDate>Fri, 13 Nov 2009 06:32:00 -0700</pubDate>
				<guid>http://www.ppshein.net/index.cfm/2009/11/13/jqtouch-and-jqplot</guid>
				
				
			</item>
			
		 	
			</channel></rss>