Lines 12-18
$(document).ready(function(){
Link Here
|
12 |
$("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, { |
12 |
$("#resultst").dataTable($.extend(true, {}, dataTablesDefaults, { |
13 |
"sDom": 't', |
13 |
"sDom": 't', |
14 |
"aoColumnDefs": [ |
14 |
"aoColumnDefs": [ |
15 |
{ "aTargets": [ -1,-2,-3 ], "bSortable": false, "bSearchable": false }, |
15 |
{ "aTargets": [ -1,-2 ], "bSortable": false, "bSearchable": false }, |
16 |
], |
16 |
], |
17 |
"aaSorting": [[ 1, "asc" ]], |
17 |
"aaSorting": [[ 1, "asc" ]], |
18 |
"bPaginate": false |
18 |
"bPaginate": false |
Lines 114-121
tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
Link Here
|
114 |
<th>Server</th> |
114 |
<th>Server</th> |
115 |
<th>Heading</th> |
115 |
<th>Heading</th> |
116 |
<th>Authority Type</th> |
116 |
<th>Authority Type</th> |
117 |
<th>MARC</th> |
117 |
<th>Actions</th> |
118 |
<th> </th> |
|
|
119 |
</tr></thead> |
118 |
</tr></thead> |
120 |
<tbody>[% FOREACH breeding_loo IN breeding_loop %] |
119 |
<tbody>[% FOREACH breeding_loo IN breeding_loop %] |
121 |
[% IF ( breeding_loo.breedingid ) %] |
120 |
[% IF ( breeding_loo.breedingid ) %] |
Lines 123-130
tr.selected { background-color : #FFFFCC; } tr.selected td { background-color :
Link Here
|
123 |
<td>[% breeding_loo.server %] <div class="linktools"><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC">Preview MARC</a> <a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]">Import</a><a href="#" id="close_menu" title="Close this menu"> X </a></div> </td> |
122 |
<td>[% breeding_loo.server %] <div class="linktools"><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC">Preview MARC</a> <a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]">Import</a><a href="#" id="close_menu" title="Close this menu"> X </a></div> </td> |
124 |
<td>[% breeding_loo.heading %]</td> |
123 |
<td>[% breeding_loo.heading %]</td> |
125 |
<td>[% breeding_loo.heading_code %]</td> |
124 |
<td>[% breeding_loo.heading_code %]</td> |
126 |
<td><a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC">MARC</a></td> |
125 |
<td class="actions"> |
127 |
<td><a href="#" class="import_record" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]">Import</a></td> |
126 |
<a href="/cgi-bin/koha/catalogue/showmarc.pl?importid=[% breeding_loo.breedingid %]" class="previewMARC btn btn-mini"><i class="fa fa-eye"></i> Show MARC</a> |
|
|
127 |
<a href="#" class="import_record btn btn-mini" data-breedingid="[% breeding_loo.breedingid %]" data-heading_code="[% breeding_loo.heading_code %]" data-authid="[% breeding_loo.authid %]"><i class="fa fa-download"></i> Import</a> |
128 |
</td> |
128 |
</tr> |
129 |
</tr> |
129 |
[% END %] |
130 |
[% END %] |
130 |
[% END %]</tbody> |
131 |
[% END %]</tbody> |
131 |
- |
|
|