X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=js%2Finserts.js;h=4513d2e84de8c57b758c48c588c1fc4cf3df85d3;hb=4019df1a1a914da6061795ae88fd54d506208ffc;hp=4cfee260b3f83be96fb4e0e500c2441c8ac072e6;hpb=72f59dad7992d77e36dc2f5ada090102666b847a;p=fa-stable.git diff --git a/js/inserts.js b/js/inserts.js index 4cfee260..4513d2e8 100644 --- a/js/inserts.js +++ b/js/inserts.js @@ -11,7 +11,8 @@ var _focus; var _hotkeys = { 'alt': false, // whether is the Alt key pressed - 'focus': -1 // currently selected indeks of document.links + 'list': false, // list of all elements with hotkey used recently + 'focus': -1 // currently selected list element }; function save_focus(e) { @@ -26,7 +27,7 @@ function save_focus(e) { function _expand(tabobj) { var ul = tabobj.parentNode.parentNode; - var alltabs=ul.getElementsByTagName("input"); + var alltabs=ul.getElementsByTagName("button"); var frm = tabobj.form; if (ul.getAttribute("rel")){ @@ -53,8 +54,9 @@ function _set_combo_input(e) { save_focus(select); // submit request if there is submit_on_change option set and // search field has changed. + if (button && (this.value != this.getAttribute('_last'))) { - JsHttpRequest.request(button); + JsHttpRequest.request(button); } else if(this.className=='combo2') { this.style.display = 'none'; select.style.display = 'inline'; @@ -95,8 +97,10 @@ function _update_box(s) { if(box && s.selectedIndex>=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 } } } @@ -107,10 +111,13 @@ function _set_combo_select(e) { // 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(); + var box = document.getElementsByName(this.getAttribute('rel'))[0]; +// if(this.className=='combo') +// _update_box(this); + if ((this.selectedIndex != this.getAttribute('_last')) + ||(this.className=='combo' && _update_box(this)) + ) + this.onchange(); } e.onchange = function() { var s = this; @@ -213,19 +220,20 @@ var inserts = { function(e) { e.onclick = function() { save_focus(e); - if (e.getAttribute('aspect') == 'process') - JsHttpRequest.request(this, null, 30000); - else - JsHttpRequest.request(this); + var asp = e.getAttribute('aspect') + if (asp && asp.indexOf('process') !== -1) + JsHttpRequest.request(this, null, 60000); + else + JsHttpRequest.request(this); return false; } }, -/* 'button': function(e) { + 'button': function(e) { if (e.name) { var func = _validate[e.name]; var old = e.onclick; - if(func) { - if (typeof old != 'function') { + if(func) { + if (typeof old != 'function' || old == func) { // prevent multiply binding on ajax update e.onclick = func; } else { e.onclick = function() { @@ -238,7 +246,7 @@ var inserts = { } } }, -*/ '.amount': function(e) { + '.amount': function(e) { if(e.onblur==undefined) { e.onblur = function() { var dec = this.getAttribute("dec"); @@ -258,12 +266,29 @@ var inserts = { } } }, - 'button[aspect=selector], input[aspect=selector]': function(e) { + 'button[aspect*selector], button[aspect*abort], input[aspect*selector]': function(e) { e.onclick = function() { passBack(this.getAttribute('rel')); return false; } }, + 'button[aspect=popup]': function(e) { + var old = e.onclick + e.onclick = function() { +// this.form.target = '_blank'; +// old(); +// return true; + if(_w) _w.close(); // this is really necessary to have window on top in FF2 :/ + _w = open(document.location+'popup=1', + "edit","Scrollbars=0,resizable=0,width=800,height=600, top=50,left=50"); + if (_w.opener == null) + _w.opener = self; + // editors._call = key; // store call point for passBack +// _w.moveTo(50, 50); + _w.focus(); + return false; + } + }, 'select': function(e) { if(e.onfocus==undefined) { e.onfocus = function() { @@ -277,7 +302,7 @@ var inserts = { 'a.printlink': function(l) { l.onclick = function() { save_focus(this); - JsHttpRequest.request(this); + JsHttpRequest.request(this, null, 60000); return false; } }, @@ -295,17 +320,17 @@ var inserts = { 'ul.ajaxtabs': function(ul) { var ulist=ul.getElementsByTagName("li"); for (var x=0; x47 && key<58) || (key>64 && key<91))) { + else if (ev.altKey && !ev.ctrlKey && ((key>47 && key<58) || (key>64 && key<91))) { + key = String.fromCharCode(key); var n = _hotkeys.focus; - var l = document.links; + var l = document.getElementsBySelector('[accesskey='+key+']'); var cnt = l.length; - key = String.fromCharCode(key); + _hotkeys.list = l; for (var i=0; i=0) { - var link = document.links[_hotkeys.focus]; + var link = _hotkeys.list[_hotkeys.focus]; if(link.onclick) link.onclick(); else