From f1c3810f3ed25965f708ec96ac806bcac1b14bb7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Tue, 6 Dec 2016 10:03:20 +0100 Subject: [PATCH] focus: Zeilenfokus in die normale Behandlung verschoben --- js/common.js | 39 ++++++++++++++++++-------- templates/webpages/oe/sales_order.html | 20 +------------ 2 files changed, 29 insertions(+), 30 deletions(-) diff --git a/js/common.js b/js/common.js index b4784f4b1..5f13ee056 100644 --- a/js/common.js +++ b/js/common.js @@ -192,22 +192,39 @@ function focus_by_name(name){ return false; } -$(document).ready(function () { +$(function () { $('input').focus(function(){ if (focussable(this)) window.focused_element = this; }); - // Lowest priority: first focussable element in form. - set_cursor_to_first_element(); - - // Medium priority: class set in template - var initial_focus = $(".initial_focus").filter(':visible')[0]; - if (initial_focus) - $(initial_focus).focus(); + // setting focus inside a tabbed area fails if this is encountered before the tabbing is complete + // in that case the elements count as hidden and jquery aborts .focus() + setTimeout(function(){ + // Lowest priority: first focussable element in form. + set_cursor_to_first_element(); + + // Medium priority: class set in template + var initial_focus = $(".initial_focus").filter(':visible')[0]; + if (initial_focus) + $(initial_focus).focus(); + + // special: honour focus_position + // if no higher priority applies set focus to the appropriate element + if ($("#display_row")[0] && kivi.myconfig.focus_position) { + switch(kivi.myconfig.focus_position) { + case 'last_partnumber' : $('#display_row tr.row:gt(-3):lt(-1) input[name*="partnumber"]').focus(); break; + case 'last_description' : $('#display_row tr.row:gt(-3):lt(-1) input[name*="description"]').focus(); break; + case 'last_qty' : $('#display_row tr.row:gt(-3):lt(-1) input[name*="qty"]').focus(); break; + case 'new_partnumber' : $('#display_row tr:gt(1) input[name*="partnumber"]').focus(); break; + case 'new_description' : $('#display_row tr:gt(1) input[name*="description"]').focus(); break; + case 'new_qty' : $('#display_row tr:gt(1) input[name*="qty"]').focus(); break; + } + } - // legacy. sone forms install these - if (typeof fokus == 'function') { fokus(); return; } - if (focus_by_name('cursor_fokus')) return; + // legacy. sone forms install these + if (typeof fokus == 'function') { fokus(); return; } + if (focus_by_name('cursor_fokus')) return; + }, 0); }); $('form').submit(function(){ diff --git a/templates/webpages/oe/sales_order.html b/templates/webpages/oe/sales_order.html index acdadfc84..4c727800d 100644 --- a/templates/webpages/oe/sales_order.html +++ b/templates/webpages/oe/sales_order.html @@ -28,7 +28,7 @@ [%- FOREACH row = ROWS %] [%- FOREACH row1 = row.ROW1 %] - [% row1.value %] + [% row1.value %] [%- END %] @@ -81,23 +81,5 @@ [%- END %] - - - -- 2.20.1