X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Finserts.js;h=d85a9062eacdb8265ac5c5811c2042a0a1e96812;hb=d7dde51cf888dfc7e049fefed38e786a369b9b38;hp=a3f89113202784e50aea383a009ccac8ecdbfdfb;hpb=de97ba278e22c5456e550d55e3bc6de5e96572a3;p=fa-stable.git diff --git a/js/inserts.js b/js/inserts.js index a3f89113..d85a9062 100644 --- a/js/inserts.js +++ b/js/inserts.js @@ -1,106 +1,243 @@ +var _focus; + +function debug(msg) { + box = document.getElementById('msgbox') + box.innerHTML= box.innerHTML+'
'+msg +} + +function progbar(container) { + container.innerHTML= "
"+ + user.loadtxt+"
"; +} + +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 _expand(tabobj) { + + var ul = tabobj.parentNode.parentNode; + var alltabs=ul.getElementsByTagName("input"); + var frm = tabobj.form; + + if (ul.getAttribute("rel")){ + for (var i=0; i=0) { + var len = select.length; + var byid = this.className=='combo'; + 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 (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; + } + } +} + +function _update_box(s) { + var byid = s.className=='combo'; + var rel = s.getAttribute('rel'); + var box = document.getElementsByName(rel)[0]; + if(box && s.selectedIndex>=0) { + var opt = s.options[s.selectedIndex]; + if(box) { + box.value = byid ? opt.value : opt.text; + box.setAttribute('_last', box.value); + } + } +} + +function _set_combo_select(e) { + // When combo position is changed via js (eg from searchbox) + // no onchange event is generated. To ensure proper change + // signaling we must track selectedIndex in onblur handler. + e.setAttribute('_last', e.selectedIndex); + e.onblur = function() { + if(this.className=='combo') + _update_box(this); + if (this.selectedIndex != this.getAttribute('_last')) + this.onchange(); + } + e.onchange = function() { + var s = this; + this.setAttribute('_last', this.selectedIndex); + if(s.className=='combo') + _update_box(s); + if(s.selectedIndex>=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 (box && key == 32 && this.className == 'combo2') { + this.style.display = 'none'; + box.style.display = 'inline'; + box.value=''; + setFocus(box.name); + return false; + } + } +} + /* Behaviour definitions */ var inserts = { - '.amount': function(element) { - if(element.onblur==undefined) { - var dec = element.getAttribute("dec"); - element.onblur = function() { + 'input': function(e) { + if(e.onfocus==undefined) { + e.onfocus = function() { + save_focus(this); + if (this.className == 'combo') + this.select(); + }; + } + if (e.className == 'combo' || e.className == 'combo2') { + _set_combo_input(e); + } + }, + 'input.combo_submit,input.combo_select,input.combo2': + function(e) { + // this hides search button for js enabled browsers + e.style.display = 'none'; + }, + 'input.ajaxsubmit,input.editbutton,input.navibutton': + function(e) { + e.onclick = function() { + JsHttpRequest.request(this); + return false; + } + }, + '.amount': function(e) { + if(e.onblur==undefined) { + e.onblur = function() { + var dec = this.getAttribute("dec"); price_format(this.name, get_amount(this.name), dec); }; } }, - 'select': function(element) { - if(element.onfocus==undefined) { - element.onfocus = function() { - document.getElementsByName('_focus')[0].value = element.name; - }; - element.onkeydown = function(event) { - if (event.keyCode==32) { - if(this.size>1) { - this.size = 1; - } else { - var sel = this.selectedIndex; - this.size = this.options.length; - if(this.size>10) this.size = 10; - this.selectedIndex = sel; - } - } - }; - element.onblur = function(event) { - this.size = 1; + '.searchbox': // emulated onchange event handling for text inputs + function(e) { + e.setAttribute('_last_val', e.value); + e.setAttribute('autocomplete', 'off'); //must be off when calling onblur + e.onblur = function() { + var val = this.getAttribute('_last_val'); + if (val != this.value) { + this.setAttribute('_last_val', this.value); + JsHttpRequest.request('_'+this.name+'_changed', this.form); + } } + e.onkeydown = function(ev) { + ev = ev||window.event; + key = ev.keyCode||ev.which; + if (key == 13 && (this.value != this.getAttribute('_last_val'))) { + this.blur(); + return false; + } + } + }, + 'select': function(e) { + if(e.onfocus==undefined) { + e.onfocus = function() { + save_focus(this); + }; + var c = e.className; + if (c == 'combo' || c == 'combo2') + _set_combo_select(e); } }, - 'input': function(element) { - if(element.onfocus==undefined) { - element.onfocus = function() { - document.getElementsByName('_focus')[0].value = element.name; + 'textarea,a': function(e) { + if(e.onfocus==undefined) { + e.onfocus = function() { + save_focus(this); }; } - }, - 'input.submit': function(element) { - element.onfocus = function() {} // we do not want to change focus on submit - }, - // combo: text input and related selector in next cell - 'input.combo': function(element) { - if(element.onkeydown==undefined) { - element.onkeydown=function(event) { - if (event.keyCode==13) event.keyCode=9; - }; - element.onkeyup = function() { - var select = document.getElementsByName(this.getAttribute('rel'))[0]; - var len = select.length; - var ac = this.value; - var txt; - select.options[select.selectedIndex].selected = false; - for (i = 0; i < len; i++) { -// txt = select.options[i].text; - txt = select.options[i].value; - if (txt.indexOf(ac) == 0) { - select.options[i].selected = true; - break; - } - } - }; - element.onblur = function() { - var select = document.getElementsByName(this.getAttribute('rel'))[0]; - if (this.value != "") - this.value = select.options[select.selectedIndex].value; - return true; - }; + 'ul.ajaxtabs': function(ul) { + var ulist=ul.getElementsByTagName("li"); + for (var x=0; x