<?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: I18Nized Buttons with AccessKeys in Struts applications</title>
	<atom:link href="http://technology.amis.nl/2004/10/11/i18nized-buttons-with-accesskeys-in-struts-applications/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology.amis.nl/2004/10/11/i18nized-buttons-with-accesskeys-in-struts-applications/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=i18nized-buttons-with-accesskeys-in-struts-applications</link>
	<description></description>
	<lastBuildDate>Fri, 12 Apr 2013 10:04:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Jan Nielsen</title>
		<link>http://technology.amis.nl/2004/10/11/i18nized-buttons-with-accesskeys-in-struts-applications/#comment-940</link>
		<dc:creator>Jan Nielsen</dc:creator>
		<pubDate>Tue, 21 Mar 2006 09:13:21 +0000</pubDate>
		<guid isPermaLink="false">/?p=202#comment-940</guid>
		<description><![CDATA[Damn!, would I have liked this solution described in more detail.
I&#039;m looking for the exact same thing.

Well, I&#039;ll try mailing you Leon

*J*]]></description>
		<content:encoded><![CDATA[<p>Damn!, would I have liked this solution described in more detail.<br />
I&#8217;m looking for the exact same thing.</p>
<p>Well, I&#8217;ll try mailing you Leon</p>
<p>*J*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: leon</title>
		<link>http://technology.amis.nl/2004/10/11/i18nized-buttons-with-accesskeys-in-struts-applications/#comment-939</link>
		<dc:creator>leon</dc:creator>
		<pubDate>Thu, 14 Oct 2004 08:16:03 +0000</pubDate>
		<guid isPermaLink="false">/?p=202#comment-939</guid>
		<description><![CDATA[Simply use the accessKey property on HTML DOM Button object


&lt;pre&gt;
&lt;html&gt;
&lt;head&gt;
 &lt;script language=&quot;javascript&quot;&gt;
    function helloWorld() {
      alert(&#039;Hello!&#039;);
    }

    function createButton() {
      var bt = document.createElement(&quot;button&quot;);
      var btText = document.createTextNode(&quot;Push me&quot;);
      bt.accessKey = &#039;P&#039;;
      bt.appendChild(btText);
      bt.onclick = helloWorld;
      document.body.appendChild(bt);
     }
&lt;/script&gt;
&lt;/head&gt;
&lt;body onload=&quot;createButton();&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Simply use the accessKey property on HTML DOM Button object</p>
<pre class="wp-code-highlight prettyprint">
&lt;html&gt;
&lt;head&gt;
 &lt;script language=&quot;javascript&quot;&gt;
    function helloWorld() {
      alert(&#039;Hello!&#039;);
    }

    function createButton() {
      var bt = document.createElement(&quot;button&quot;);
      var btText = document.createTextNode(&quot;Push me&quot;);
      bt.accessKey = &#039;P&#039;;
      bt.appendChild(btText);
      bt.onclick = helloWorld;
      document.body.appendChild(bt);
     }
&lt;/script&gt;
&lt;/head&gt;
&lt;body onload=&quot;createButton();&quot;&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: hanson</title>
		<link>http://technology.amis.nl/2004/10/11/i18nized-buttons-with-accesskeys-in-struts-applications/#comment-938</link>
		<dc:creator>hanson</dc:creator>
		<pubDate>Thu, 14 Oct 2004 07:35:50 +0000</pubDate>
		<guid isPermaLink="false">/?p=202#comment-938</guid>
		<description><![CDATA[I made a button with js,but i don&#039;t know how i can insert an accesskey? will you help me? thanks]]></description>
		<content:encoded><![CDATA[<p>I made a button with js,but i don&#8217;t know how i can insert an accesskey? will you help me? thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
