X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Futils.js;h=1c66384bb03d663fd18c3ab037fac41c2efd6bc9;hb=3018744b3334f0ba0e90721c6eb16ceb3c36cca5;hp=8f9346ccddef17475198c19a4c1c2dd9e7ae6b19;hpb=a5242af68e65661edb7175412444dce536a7f311;p=fa-stable.git diff --git a/js/utils.js b/js/utils.js index 8f9346cc..1c66384b 100644 --- a/js/utils.js +++ b/js/utils.js @@ -118,9 +118,7 @@ var q = {}; if (typeof(inp) == "string") - submitObj = document.getElementsByName(inp)[0]; - else - submitObj = inp; + submitObj = document.getElementsByName(inp)[0]||inp; objForm = objForm || (submitObj && submitObj.form); @@ -201,8 +199,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 +211,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 +235,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