X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Finserts.js;h=0dd141650f64203d2f864004ae8fd926f0d11728;hb=9451db1760036985de791ba24c442801e37f37de;hp=a639b2cc3ed623b6f968b856a4a97bc87a42b16d;hpb=73f7e2f83657966f999078917cf9404ec5d65fc3;p=fa-stable.git diff --git a/js/inserts.js b/js/inserts.js index a639b2cc..0dd14165 100644 --- a/js/inserts.js +++ b/js/inserts.js @@ -1,348 +1,623 @@ -//ajax transfer progress indicator -var starttabs = new Array(); -var autoload = new Array(); -var onload_script = "" -var loadstatustext=" Requesting content..." -var loadedobjects="" - -function Querystring(qs) { // optionally pass a querystring to parse - this.params = new Object() - this.get=Querystring_get - this.set=Querystring_set - this.href=window.location.pathname - this.url=Querystring_url - - if (qs == null) - qs=location.search.substring(1,location.search.length) - - if (qs.length == 0) return - -// Turn back to -// See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1 - qs = qs.replace(/\+/g, ' ') - var args = qs.split('&') // parse out name/value pairs separated via & - -// split out each name=value pair - for (var i=0;i. +***********************************************************************/ +var _focus; +var _hotkeys = { + 'alt': false, // whether is the Alt key pressed + 'list': false, // list of all elements with hotkey used recently + 'focus': -1 // currently selected list element +}; - if (pair.length == 2) - value = unescape(pair[1]) - else - value = name - - this.params[name] = value +function validate(e) { + if (e.name && (typeof _validate[e.name] == 'function')) + return _validate[e.name](e); + else { + var n = e.name.indexOf('['); + if(n!=-1) { + var key = e.name.substring(n+1, e.name.length-1); + if (key.length>1 && _validate[e.name.substring(0,n)]) + return _validate[e.name.substring(0,n)][key](e); + } } - - this.page = this.params.page - delete this.params.page + return true; } -function Querystring_get(key, default_) { - // This silly looking line changes UNDEFINED to NULL - if (default_ == null) default_ = null; - - var value=this.params[key] - if (value==null) value=default_; - - return value +function save_focus(e) { + _focus = e.name||e.id; + var h = document.getElementById('hints'); + if (h) { + h.style.display = e.title && e.title.length ? 'inline' : 'none'; + h.innerHTML = e.title ? e.title : ''; + } } -function Querystring_set(key, value) { - this.params[key] = value; -} +function _expand(tabobj) { -function Querystring_url() { - var url = this.href + '?page='+ this.page - for( key in this.params) { - url += '&'+ key + '='+ this.params[key] - } - return url + var ul = tabobj.parentNode.parentNode; + var alltabs=ul.getElementsByTagName("button"); + var frm = tabobj.form; + + if (ul.getAttribute("rel")){ + for (var i=0; i=0) { + var len = select.length; + var byid = string_contains(this.className, 'combo') || string_contains(this.className, 'combo3'); + var ac = this.value.toUpperCase(); + select.options[select.selectedIndex].selected = false; + for (i = 0; i < len; i++) { + var txt = byid ? select.options[i].value : select.options[i].text; + if (string_contains(this.className, 'combo3')) { + if(txt.toUpperCase().indexOf(ac) == 0) { + select.options[i].selected = true; + break; + } + } else { + if(txt.toUpperCase().indexOf(ac) >= 0) { + select.options[i].selected = true; + break; + } + } + } + } + }; + e.onkeydown = function(ev) { + ev = ev||window.event; + key = ev.keyCode||ev.which; + if(key == 13) { + this.blur(); + return false; + } } - debug(url) - container.innerHTML=loadstatustext - ajaxCaller.postForPlainText(url,vars,callback) } -function loadobjs(revattribute){ -if (revattribute!=null && revattribute!=""){ //if "rev" attribute is defined (load external .js or .css files) -var objectlist=revattribute.split(/\s*,\s*/) //split the files and store as array -for (var i=0; i=0) { + var opt = s.options[s.selectedIndex]; + if(box) { + var old = box.value; + box.value = byid ? opt.value : opt.text; + box.setAttribute('_last', box.value); + return old != box.value + } + } } -function _expand(tabobj) { -var alltabs=tabobj.parentNode.parentNode.getElementsByTagName("a") - -if (tabobj.getAttribute("rel")){ -for (var i=0; i=0) { + var sname = '_'+s.name+'_update'; + var update = document.getElementsByName(sname)[0]; + if(update) { + JsHttpRequest.request(update); + } + } + return true; + } + e.onkeydown = function(event) { + event = event||window.event; + key = event.keyCode||event.which; + var box = document.getElementsByName(this.getAttribute('rel'))[0]; + if(key == 8 || (key==37 && event.altKey)) { + event.returnValue = false; + return false; + } + if (box && (key == 32) && (string_contains(this.className, 'combo2'))) { + this.style.display = 'none'; + box.style.display = 'inline'; + box.value=''; + setFocus(box); + return false; + } else { + if (key == 13 && !e.length) // prevent chrome issue (blocked cursor after CR on empty selector) + return false; + } + } } -function expandtab(tabcontentid, tabnumber){ //interface for selecting a tab (plus expand corresponding content) -var alltabs=document.getElementById(tabcontentid).getElementsByTagName("a") -var thetab=alltabs[tabnumber] -//debug(tabcontentid+' '+tabnumber) -if (thetab.getAttribute("rel")){ - for (var i=0; i47 && key<58) || (key>64 && key<91))) { + key = String.fromCharCode(key); + var n = _hotkeys.focus; + var l = document.getElementsBySelector('[accesskey='+key+']'); + var cnt = l.length; + _hotkeys.list = l; + for (var i=0; i= 0) { + var link = _hotkeys.list[_hotkeys.focus]; + if(link.onclick) + link.onclick(); + else + if (link.target=='_blank') { + window.open(link.href,'','toolbar=no,scrollbar=no,resizable=yes,menubar=no,width=900,height=500'); + openWindow(link.href,'_blank'); + } else + window.location = link.href; + } + return stopEv(ev); + } + } + return true; + } } -); + +Behaviour.register(inserts); + +Behaviour.addLoadEvent(setFocus); +Behaviour.addLoadEvent(setHotKeys);