<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Hot keys system for FrontAccounting]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=351</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=351&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Hot keys system for FrontAccounting.]]></description>
		<lastBuildDate>Fri, 15 Feb 2013 17:41:47 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=15619#p15619</link>
			<description><![CDATA[<p>Wow! That&#039;s a nice way of managing translation of labels and moving into form fields at the same time! For this to work, we need to have an &quot;id&quot; for each label and it&#039;s correspondig form field to be suffixed with a common number something like: </p><div class="codebox"><pre><code>&lt;p&gt;
  &lt;span id=&quot;formfieldlabel_001&quot;&gt;&lt;?php echo _&quot;(&amp;Name&quot;); ?&gt; :&lt;/span&gt;
  &lt;input type=&quot;text&quot; size=&quot;40&quot; id=&quot;forminputfield_001&quot; name=&quot;name_field&quot;&gt;
&lt;/p&gt;</code></pre></div><p>Only then can a generic js included in each form be able to generically do the trick.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 15 Feb 2013 17:41:47 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=15619#p15619</guid>
		</item>
		<item>
			<title><![CDATA[Re: Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=15617#p15617</link>
			<description><![CDATA[<p>There is no hot keys support in forms, only in menu and submenus (hot keys work on links).<br />Adding hot key functionality to form field would be big improvement, but this is quite complex javascript/php task.<br />The hotkeys could be stored analogicaly as underscored letters inn form field legend text. Anybody interested in contributing the code <img src="https://frontaccounting.com/punbb/img/smilies/wink.png" width="15" height="15" alt="wink" /> ?</p><p>Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Fri, 15 Feb 2013 17:08:45 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=15617#p15617</guid>
		</item>
		<item>
			<title><![CDATA[Re: Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=15601#p15601</link>
			<description><![CDATA[<p>Hot Key to move to a specific field in a form - how is that achieved?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 15 Feb 2013 03:14:23 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=15601#p15601</guid>
		</item>
		<item>
			<title><![CDATA[Re: Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=15596#p15596</link>
			<description><![CDATA[<p>Currently hot keys functionality works fine e.g. on FireFox, does not work propely under Chrome. Hot keys are defined in text messages (or translation files) by preceding respective menu option text letter by ampersand.</p><p>There is no need for any list of hot keys, as they are directly visible (as underscored letter) on menu options.<br />Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Thu, 14 Feb 2013 22:41:38 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=15596#p15596</guid>
		</item>
		<item>
			<title><![CDATA[Re: Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=15570#p15570</link>
			<description><![CDATA[<p>What is the current status of this issue?<br />Where are the hot key definitions stored?<br />Any report to list them?</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 13 Feb 2013 09:07:23 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=15570#p15570</guid>
		</item>
		<item>
			<title><![CDATA[Hot keys system for FrontAccounting]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=1211#p1211</link>
			<description><![CDATA[<p><span class="bbu">1. Hotkey mechanism</span><br />One of problems addressed during the implementation was big count of options in some modules which make unique access letters assignement difficult. We resolved this allowing use of duplicated hot keys in following way:<br />When user press and hold Alt key pressing letter key moves focus&nbsp; in order between menu options with the letter assigned. Then when Alt key is released, currently focused option link is selected. </p><p><span class="bbu">2. Hotkey map</span><br />Current letter to option assignment has been done intuitively rather than systematically, but I&#039;ve kept i mind following rules:<br />. Every menu option has access key. If key is used by more than one option user<br />can select any of them in circle keeping Alt key pressed and touching access<br />key some times.<br />. The letter for options should be as unique as possible, yet intuitive.<br />. Primary use of first word letters.<br />. Less used group of options like inquires has common access key.<br />. Options available in more than one module should have the same access key (eg R for reports)<br />. Arrow keys can be used in menus to navigate between options (since v.2.2)&nbsp; </p><p><span class="bbu">3.Hotkeys in forms (since v.2.2)</span><br />Most forms in FA have default values in fields set on interaction start. To bust form data entry performance default submit button has CtrlEnter hotkey assigned in most pages. If there is some non-destructive cancel button available on given form, Escape hotkey can be also assigned to it. Both active buttons are easily recognized by additional confirm/cancel icon. </p><p><span class="bbu">4. Compatibility</span><br />This mechanism seems to work at all browsers but FireFox 3.0 for Win. At this one case user have to press Enter key to run selected option because of internal bug in this FF version. <br />The implemented hot keys mechanism is available only in full interface mode, although for non-javascript enabled browsers native access key mechanism (with related flaws) should be available.</p><p>The system as for now is available for testing at 3 basic themes (default, aqua and cool). We want to know your opinion about the used implementation and assigned hot letters before going further. We would like to have access key map accepted by FA community before CVS update, because introduced system will force corrections to all language modules, and nobody want to do it more than once. The needed changes in gettextized strings are very simple, and not time consuming, but necessary. This is the price for having independent keymap for any supported language.</p><p>Janusz</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Mon, 29 Sep 2008 18:44:46 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=1211#p1211</guid>
		</item>
	</channel>
</rss>
