X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Futils.js;h=f4a4f65cc0f4717af7a14d434325566bf0f018d5;hb=7d3a4880be5ffa54f43920fd681236b6661012f3;hp=aa8c3879680a2d4c963b787c7c25007a92123a28;hpb=818719f38b8327cdca616d58b13913dbd174d96a;p=fa-stable.git diff --git a/js/utils.js b/js/utils.js index aa8c3879..f4a4f65c 100644 --- a/js/utils.js +++ b/js/utils.js @@ -1,12 +1,12 @@ /********************************************************************** Copyright (C) FrontAccounting, LLC. - Released under the terms of the GNU Affero General Public License, - AGPL, as published by the Free Software Foundation, either version - 3 of the License, or (at your option) any later version. + Released under the terms of the GNU General Public License, GPL, + as published by the Free Software Foundation, either version 3 + of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. - See the License here . + See the License here . ***********************************************************************/ // // JsHttpRequest class extensions. @@ -201,8 +201,8 @@ function get_amount(doc, label) { else var val = document.getElementsByName(doc)[0].value; val = val.replace(new RegExp('\\'+user.ts, 'g'),''); - val = val.replace(new RegExp('\\'+user.ds, 'g'),'.'); - return 1*val; + val = +val.replace(new RegExp('\\'+user.ds, 'g'),'.'); + return isNaN(val) ? 0 : val; } function goBack() { @@ -213,25 +213,22 @@ function goBack() { } function setFocus(name, byId) { - if(document.location.pathname.indexOf('index.php') != -1) { - // this is application menu page - set focus on first link - // var el = document.getElementById('msgbox'); - // TODO find first link after msgbox and set focus - } - if(!name) { - if (_focus) - name = _focus; // last focus set in onfocus handlers - else - if (document.forms.length) { // no current focus (first page display) - set it from from last form - var cur = document.getElementsByName('_focus')[document.forms.length-1]; - if(cur) name = cur.value; - } - } - if(byId) - el = document.getElementById(name); - else - el = document.getElementsByName(name)[0]; + if(typeof(name)=='object') + el = name; + else { + if(!name) { // page load/ajax update + if (_focus) + name = _focus; // last focus set in onfocus handlers + else + if (document.forms.length) { // no current focus (first page display) - set it from from last form + var cur = document.getElementsByName('_focus')[document.forms.length-1]; + if(cur) name = cur.value; + } + } + if(byId || !(el = document.getElementsByName(name)[0])) + el = document.getElementById(name); + } if(el && el.focus) { // The timeout is needed to prevent unpredictable behaviour on IE & Gecko. // Using tmp var prevents crash on IE5 @@ -240,3 +237,66 @@ function setFocus(name, byId) { setTimeout(tmp, 0); } } +/* + Find closest element in neighbourhood and set focus. + dir is arrow keycode. +*/ +function move_focus(dir, e0, neighbours) +{ + var p0 = element_pos(e0); + var t; + var l=0; + for(var i=0; ip0.y)) || (dir==38 && (p.yp0.x)))) { + var l1 = (p.y-p0.y)*(p.y-p0.y)+(p.x-p0.x)*(p.x-p0.x); + if ((l1