improve enterworktime.
@@ -14,40 +14,6 @@ | ||
14 | 14 | $(document).ready(function() { |
15 | 15 | $("div.description").find("h1,h2,h3,h4,h5,h6").addAnchor("Link to this section"); |
16 | 16 | }); |
17 | -function moveFocus(e){ | |
18 | - id = e.target.id; | |
19 | - ele = $("input[id^='hours_']"); | |
20 | - ele.each(function(i){ | |
21 | - if($(this).attr('id')==id){ | |
22 | - current_pos = i; | |
23 | - } | |
24 | - }); | |
25 | - | |
26 | -// fname = id.substring(0,id.indexOf('_')+1); | |
27 | -// fid = parseInt(id.substring(id.indexOf('_')+1,id.length)); | |
28 | - | |
29 | - if(navigator.appName.charAt(0)=="N") | |
30 | - kc=e.which; | |
31 | - if(navigator.appName.charAt(0)=="M") | |
32 | - kc=event.keyCode; | |
33 | - | |
34 | - // up | |
35 | - if(kc==38) { | |
36 | - if(current_pos-1 > =0){ | |
37 | - f = ele.get(current_pos-1); | |
38 | - f.focus(); | |
39 | - } | |
40 | - } | |
41 | - // down | |
42 | - if(kc==40) { | |
43 | - if(current_pos+1 < ele.length){ | |
44 | - f = ele.get(current_pos+1); | |
45 | - f.focus(); | |
46 | - } | |
47 | - } | |
48 | -} | |
49 | -document.onkeydown=moveFocus | |
50 | - | |
51 | 17 | </script> |
52 | 18 | </head> |
53 | 19 |
@@ -57,7 +23,6 @@ | ||
57 | 23 | <br /> |
58 | 24 | <h1>作業時間入力</h1> |
59 | 25 | 作業時間とタスクの残り時間を入力します。最低でも1日一回入力を行ってください。<br /> |
60 | -一度入力を行った時間はこの画面からは次の日まで入力できません。追加で稼働時間を入力したい場合は、各チケットの画面から入力してください。 | |
61 | 26 | <form method="post" action="${req.href('worktime')}" autocomplete="off" > |
62 | 27 | <table border="0" cellspacing="0" cellpadding="0" class="listing tickets"> |
63 | 28 | <thead> |