X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Futils.js;h=64a266d721951cd2f1752e7b73cad97dfd2cafe1;hb=0bf933423b9645bcb57390c478d4fdaf0c895049;hp=dc2b523dbb7510737e7d63aff585b15995c52c5e;hpb=499e0e615d1a845c6c519754b3a213fdda0513ba;p=fa-stable.git diff --git a/js/utils.js b/js/utils.js index dc2b523d..64a266d7 100644 --- a/js/utils.js +++ b/js/utils.js @@ -8,6 +8,21 @@ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License here . ***********************************************************************/ +function set_mark(img) { + var box = document.getElementById('ajaxmark'); + if(box) { + if(img) box.src = user.theme+'images/'+ img; + box.style.visibility = img ? 'visible' : 'hidden' + } +} + +function disp_msg(msg, cl) { + var box = document.getElementById('msgbox') + box.innerHTML= "
"+ msg+'
'; +// box.style.display = msg=='' ? 'none':'block'; + if (msg!='') window.scrollTo(0,element_pos(box).y-10); +} + // // JsHttpRequest class extensions. // @@ -18,9 +33,14 @@ // if form parameter exists also form values are submited, otherwise // request is directed to current location // - JsHttpRequest.request= function(trigger, form) { - var mark = document.getElementById('ajaxmark'); - if(mark) mark.style.visibility = 'visible'; +JsHttpRequest.request= function(trigger, form, tout) { +// if (trigger.type=='submit' && !validate(trigger)) return false; + tout = tout | 3000; // default timeout value + set_mark(tout>5000 ? 'progressbar.gif' : 'ajax-loader.gif'); + JsHttpRequest._request(trigger, form, tout, 2); +} + +JsHttpRequest._request = function(trigger, form, tout, retry) { if (trigger.tagName=='A') { var content = {}; var upload = 0; @@ -41,12 +61,29 @@ if (!form) url = url.substring(0, url.indexOf('?')); - if (!submitObj) + if (!submitObj) { content[trigger] = 1; - + } } // this is to avoid caching problems content['_random'] = Math.random()*1234567; + + var tcheck = setTimeout( + function() { + for(var id in JsHttpRequest.PENDING) { + var call = JsHttpRequest.PENDING[id]; + if (call != false) { + if (call._ldObj.xr) // needed for gecko + call._ldObj.xr.onreadystatechange = function(){}; + call.abort(); // why this doesn't kill request in firebug? +// call._ldObj.xr.abort(); + delete JsHttpRequest.PENDING[id]; + } + } + set_mark(retry ? 'ajax-loader2.gif':'warning.png' ); + if(retry) + JsHttpRequest._request(trigger, form, tout, retry-1); + }, tout ); JsHttpRequest.query( (upload ? "form." : "")+"POST "+url, // force form loader @@ -91,11 +128,11 @@ errors = errors+'
Unknown ajax function: '+cmd; } } - + if(tcheck) + JsHttpRequest.clearTimeout(tcheck); // Write errors to the debug div. document.getElementById('msgbox').innerHTML = errors; - var mark = document.getElementById('ajaxmark'); - if(mark) mark.style.visibility = 'hidden'; + set_mark(); Behaviour.apply(); @@ -108,9 +145,9 @@ } } }, - false // do not disable caching + false // do not disable caching ); - } + } // collect all form input values plus inp trigger value JsHttpRequest.formInputs = function(inp, objForm, upload) { @@ -118,9 +155,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); @@ -149,10 +184,13 @@ { if(el.type=='select-multiple') { + name = name.substr(0,name.length-2); + q[name] = new Array; for (var j = 0; j < el.length; j++) { + s = name.substring(0, name.length-2); if (el.options[j].selected == true) - q[name] = el.options[j].value; + q[name].push(el.options[j].value); } } else @@ -197,9 +235,11 @@ function price_format(post, num, dec, label, color) { function get_amount(doc, label) { if(label) - var val = document.getElementById(doc).innerHTML; + var val = document.getElementById(doc).innerHTML; else - var val = document.getElementsByName(doc)[0].value; + var val = typeof(doc) == "string" ? + document.getElementsByName(doc)[0].value : doc.value; + val = val.replace(new RegExp('\\'+user.ts, 'g'),''); val = +val.replace(new RegExp('\\'+user.ds, 'g'),'.'); return isNaN(val) ? 0 : val; @@ -239,22 +279,24 @@ function setFocus(name, byId) { } /* Find closest element in neighbourhood and set focus. - dir is direction as arrow code. + dir is arrow keycode. */ -function move_focus(dir, e, neighbours) +function move_focus(dir, e0, neighbours) { - var p0 = element_pos(e); + 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 ((l1p0.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