<?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/"
> <channel><title>Comments on: Masked Input Plugin 1.1.2</title> <atom:link href="http://digitalbush.com/2007/11/29/masked-input-plugin-112/feed/" rel="self" type="application/rss+xml" /><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/</link> <description>Tales of a Tormented Software Developer</description> <lastBuildDate>Tue, 07 Feb 2012 11:47:55 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>By: Caue Rego</title><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/comment-page-1/#comment-3105</link> <dc:creator>Caue Rego</dc:creator> <pubDate>Tue, 15 Mar 2011 00:08:25 +0000</pubDate> <guid
isPermaLink="false">http://digitalbush.com/2007/11/29/masked-input-plugin-112/#comment-3105</guid> <description>Here&#039;s two simpler ways to force uppercase with no need to use the masked plugin:$(&quot;selector&quot;).keypress(function(event){
$(this).val($(this).val().toUpperCase());
});and / or:$(&quot;selector&quot;).css(&quot;text-transform&quot;, &quot;uppercase&quot;);</description> <content:encoded><![CDATA[<p>Here&#8217;s two simpler ways to force uppercase with no need to use the masked plugin:</p><p> $(&#8220;selector&#8221;).keypress(function(event){<br
/> $(this).val($(this).val().toUpperCase());<br
/> });</p><p>and / or:</p><p> $(&#8220;selector&#8221;).css(&#8220;text-transform&#8221;, &#8220;uppercase&#8221;);</p> ]]></content:encoded> </item> <item><title>By: Stephen Stanley</title><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/comment-page-1/#comment-2982</link> <dc:creator>Stephen Stanley</dc:creator> <pubDate>Thu, 15 Jul 2010 17:11:24 +0000</pubDate> <guid
isPermaLink="false">http://digitalbush.com/2007/11/29/masked-input-plugin-112/#comment-2982</guid> <description>I think this is a great extension for jQuery that I will use on all of my projects. My only complaint is handling currency....mask(&quot;$?999,999,999,999&quot;)When you input 80000 the result is $800,00Same issue with percentages....mask(&quot;%?999.99&quot;)When you input 80.00 the result is 800.0Other than that, this plugin is really amazing. Thanks for all of the work you put into it! :)</description> <content:encoded><![CDATA[<p>I think this is a great extension for jQuery that I will use on all of my projects. My only complaint is handling currency&#8230;</p><p>.mask(&#8220;$?999,999,999,999&#8243;)</p><p>When you input 80000 the result is $800,00</p><p>Same issue with percentages&#8230;</p><p>.mask(&#8220;%?999.99&#8243;)</p><p>When you input 80.00 the result is 800.0</p><p>Other than that, this plugin is really amazing. Thanks for all of the work you put into it! <img
src='http://digitalbush.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p> ]]></content:encoded> </item> <item><title>By: John Doe</title><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/comment-page-1/#comment-2860</link> <dc:creator>John Doe</dc:creator> <pubDate>Sat, 20 Feb 2010 09:08:26 +0000</pubDate> <guid
isPermaLink="false">http://digitalbush.com/2007/11/29/masked-input-plugin-112/#comment-2860</guid> <description>Just like &quot;COME ON&quot; said in his comment on May 15th, 2009; a decent currency support would be extremely appreciated! Anyone capable of adding the plugins functionality with right padding and dot for decimal trigger?The currency formatter supplied earlier (http://inovaideia.com.br/maskInputMoney/) is really poor. I really like this input mask plugin, I&#039;ve been using it for years now. But currency support is indeed a big desire!</description> <content:encoded><![CDATA[<p>Just like &#8220;COME ON&#8221; said in his comment on May 15th, 2009; a decent currency support would be extremely appreciated! Anyone capable of adding the plugins functionality with right padding and dot for decimal trigger?</p><p>The currency formatter supplied earlier (<a
href="http://inovaideia.com.br/maskInputMoney/" rel="nofollow">http://inovaideia.com.br/maskInputMoney/</a>) is really poor. I really like this input mask plugin, I&#8217;ve been using it for years now. But currency support is indeed a big desire!</p> ]]></content:encoded> </item> <item><title>By: Vinayak</title><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/comment-page-1/#comment-2858</link> <dc:creator>Vinayak</dc:creator> <pubDate>Thu, 18 Feb 2010 02:08:00 +0000</pubDate> <guid
isPermaLink="false">http://digitalbush.com/2007/11/29/masked-input-plugin-112/#comment-2858</guid> <description>In version 1.1.2, I required a method of considering upper and lower case letters like @David (Comment on Feb. 3, 2008). I achieved it using the following steps:1. Change $.mask.definitions (default definitions) to:&#039;a&#039;: &quot;[a-z]&quot;,
&#039;A&#039;: &quot;[A-Z]&quot;(currently line 15)2. Add setting for supporting transformation:settings = $.extend({ placeholder: &quot;_&quot;, transform: true, completed: null }, settings);(currently line 61)3. Transform keypress character based on settings:if (settings.transform) {
if (tests[p] == &#039;/[A-Z]/&#039;) c = c.toUpperCase();
if (tests[p] == &#039;/[a-z]/&#039;) c = c.toLowerCase();
}(currently after line 162: var c = String.fromCharCode(k);)Josh, not sure if this is the right way, but any comments would be helpful.</description> <content:encoded><![CDATA[<p>In version 1.1.2, I required a method of considering upper and lower case letters like @David (Comment on Feb. 3, 2008). I achieved it using the following steps:</p><p>1. Change $.mask.definitions (default definitions) to:</p><p>&#8216;a&#8217;: &#8220;[a-z]&#8220;,<br
/> &#8216;A&#8217;: &#8220;[A-Z]&#8221;</p><p>(currently line 15)</p><p>2. Add setting for supporting transformation:</p><p>settings = $.extend({ placeholder: &#8220;_&#8221;, transform: true, completed: null }, settings);</p><p>(currently line 61)</p><p>3. Transform keypress character based on settings:</p><p>if (settings.transform) {<br
/> if (tests[p] == &#8216;/[A-Z]/&#8217;) c = c.toUpperCase();<br
/> if (tests[p] == &#8216;/[a-z]/&#8217;) c = c.toLowerCase();<br
/> }</p><p>(currently after line 162: var c = String.fromCharCode(k);)</p><p>Josh, not sure if this is the right way, but any comments would be helpful.</p> ]]></content:encoded> </item> <item><title>By: COME ON</title><link>http://digitalbush.com/2007/11/29/masked-input-plugin-112/comment-page-1/#comment-2465</link> <dc:creator>COME ON</dc:creator> <pubDate>Fri, 15 May 2009 14:10:19 +0000</pubDate> <guid
isPermaLink="false">http://digitalbush.com/2007/11/29/masked-input-plugin-112/#comment-2465</guid> <description>What happened to currency support?You need to shift from right, and have a flag either to pad from decimal (always expect decimal) or wait for . to trigger to decimal.Come on, seriously - add support for right padding and that should be enough (and literals in the format, and a &#039;.&#039; trigger flag)</description> <content:encoded><![CDATA[<p>What happened to currency support?</p><p>You need to shift from right, and have a flag either to pad from decimal (always expect decimal) or wait for . to trigger to decimal.</p><p>Come on, seriously &#8211; add support for right padding and that should be enough (and literals in the format, and a &#8216;.&#8217; trigger flag)</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 2/12 queries in 0.005 seconds using apc

Served from: _ @ 2012-02-09 06:54:27 -->
