Lines 243-249
Link Here
|
243 |
</td> |
243 |
</td> |
244 |
<td> |
244 |
<td> |
245 |
[% IF note.defined && note != '' %] |
245 |
[% IF note.defined && note != '' %] |
246 |
<a name="viewnote" data-toggle="popover" title="Note" data-content="[% note | html %]" data-placement="top" data-trigger="hover">View note</a> |
246 |
<a id="viewnote" data-toggle="popover" title="Note" data-content="[% note | html %]" data-placement="top" data-trigger="hover">View note</a> |
247 |
[% ELSE %]<span> </span>[% END %] |
247 |
[% ELSE %]<span> </span>[% END %] |
248 |
</td> |
248 |
</td> |
249 |
<td> |
249 |
<td> |
Lines 1497-1503
Link Here
|
1497 |
var current_column = $("#edit_row td:eq("+i+")"); |
1497 |
var current_column = $("#edit_row td:eq("+i+")"); |
1498 |
if ( i == 3 ) { |
1498 |
if ( i == 3 ) { |
1499 |
// specific processing for the Note column |
1499 |
// specific processing for the Note column |
1500 |
var note = $(this).find("a[name='viewnote']").data("content"); |
1500 |
var note = $(this).find("a[id='viewnote']").data("content"); |
1501 |
$(current_column).find("input[type='text']").val(note); |
1501 |
$(current_column).find("input[type='text']").val(note); |
1502 |
} else if ( i == 9 ) { |
1502 |
} else if ( i == 9 ) { |
1503 |
// specific processing for Hard due date |
1503 |
// specific processing for Hard due date |