<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>mysrc.de &#187; keypad</title>
	<atom:link href="http://www.mysrc.de/tag/keypad/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysrc.de</link>
	<description>- jQuery, Mootools u.a. JS-Frameworks</description>
	<lastBuildDate>Sun, 01 Aug 2010 02:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>virtuelles jQuery Keypad Plugin</title>
		<link>http://www.mysrc.de/jquery/virtuelles-jquery-keypad-plugin/</link>
		<comments>http://www.mysrc.de/jquery/virtuelles-jquery-keypad-plugin/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 12:14:56 +0000</pubDate>
		<dc:creator>Oliver Storm</dc:creator>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[keypad]]></category>

		<guid isPermaLink="false">http://www.mysrc.de/?p=299</guid>
		<description><![CDATA[Soeben zwitschert mir eine Info über ein schönes neues jQuery Plugin ins Haus welches ich euch hier kurz vorstellen möchte. Beim jQuery Keypad handelt es sich um ein Plugin mit welchem es möglich ist sicherere Eingaben mittels eines &#8220;keyboard ähnlichen Bedienfelds&#8221; zu machen. Das Plugin fügt einem Textfeld oder einem anderen Maus-gesteuerten Eintrag ein PopUp [...]]]></description>
			<content:encoded><![CDATA[<p>Soeben zwitschert mir eine Info über ein schönes neues jQuery Plugin ins Haus welches ich euch hier kurz vorstellen möchte.</p>
<p>Beim <a title="jQuery Keypad" href="http://keith-wood.name/keypad.html" target="_blank">jQuery Keypad</a> handelt es sich um ein Plugin mit welchem es möglich ist sicherere Eingaben mittels eines &#8220;keyboard ähnlichen Bedienfelds&#8221; zu machen. Das Plugin fügt einem Textfeld oder einem anderen Maus-gesteuerten Eintrag ein PopUp an.<br />
Die Werte welche im Bedienfeld angezeigt werden sollen können einfach gesetzt werden, was es ermöglicht nur Nummern, ausländische Buschstaben usw. anzuzeigen.</p>
<p>Das Keypad kommt mit einer Vielzahl an Einstellmöglichkeiten. So ist z.B. das einblenden mittels &#8220;fade in&#8221; oder &#8220;slide down&#8221; möglich. Es gibt aber auch noch eine Menge andere Einstellungen wie z.B.:</p>
<ul>
<li><code>isRTL</code>: Der Text wird vonrechts nach links dargestellt.</li>
<li><code>clearText</code>: entfernt alle Inhalte aus dem Textfeld.</li>
<li><code>keypadClass</code>:  Die CSS-Klasse mit welcher man einfach das aussehen des Keypads anpassen kann.</li>
<li>uvm..</li>
</ul>
<p><strong>Ein einfaches Beispiel</strong></p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p299code2'); return false;">View Code</a> JAVASCRIPT</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2992"><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
</pre></td><td class="code" id="p299code2"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#defaultKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">keypad</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#viewKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #000066;">alert</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'The current value is: '</span> <span style="color: #339933;">+</span> $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#defaultKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">val</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#removeKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">toggle</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Re-attach'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#defaultKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">keypad</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'destroy'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #339933;">,</span>
    <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">text</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'Remove'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'#defaultKeypad'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">keypad</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>Alle weiteren Informationen, sowie Demos und die Dateien zum Download findet man auf der <a title="jQuery Keypad" href="http://keith-wood.name/keypad.html" target="_self">offiziellen Website</a>, in der <a title="jQuery Keypad Reference" href="http://keith-wood.name/keypadRef.html" target="_blank">Dokumentation</a> oder auf der <a title="Keypad" href="http://plugins.jquery.com/project/keypad" target="_blank">Projekt-Seite bei jQuery</a> direkt.</p>
<h3  class="related_post_title">Ähnliche Artikel</h3><ul class="related_post"><li>20. Juli 2010 -- <a href="http://www.mysrc.de/jquery/jmediaelement-jquery-html5-audio-video-kit/" title="jMediaelement &#8211; jQuery HTML5 Audio-Video Kit ">jMediaelement &#8211; jQuery HTML5 Audio-Video Kit </a></li><li>23. März 2010 -- <a href="http://www.mysrc.de/jquery/praxistipp-%e2%80%93-jqtransform-bug-bei-input-in-firefox-3-5-2/" title="Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2">Praxistipp – jqTransform Bug bei input in Firefox > 3.5.2</a></li><li>8. Dezember 2009 -- <a href="http://www.mysrc.de/jquery/jquery-load-function-ajax-the-simple-way-part-1/" title="jQuery load function &#8211; Ajax the simple way (Part 1)">jQuery load function &#8211; Ajax the simple way (Part 1)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.mysrc.de/jquery/virtuelles-jquery-keypad-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
