Lines 206-257
$(document).ready(function() {
Link Here
|
206 |
} |
206 |
} |
207 |
}, |
207 |
}, |
208 |
{ |
208 |
{ |
209 |
"data": "", // author |
209 |
"data": "", // Request details |
210 |
"orderable": false, |
210 |
"orderable": false, |
211 |
"render": function(data, type, row, meta) { |
211 |
"render": function(data, type, row, meta) { |
212 |
return display_extended_attribute(row, 'author'); |
212 |
let display = ''; |
213 |
} |
213 |
display += '<span style="display:block"> Article: ' + display_extended_attribute(row, 'article_title') + '</span>'; |
214 |
}, |
214 |
display += '<span style="display:block"> Title: ' + display_extended_attribute(row, 'title') + '</span>'; |
215 |
{ |
215 |
display += '<span style="display:block"> Author: ' + display_extended_attribute(row, 'author') + '</span>'; |
216 |
"data": "", // title |
216 |
display += '<span style="display:block"> Issue: ' + display_extended_attribute(row, 'issue') + '</span>'; |
217 |
"orderable": false, |
217 |
display += '<span style="display:block"> Volume: ' + display_extended_attribute(row, 'volume') + '</span>'; |
218 |
"render": function(data, type, row, meta) { |
218 |
display += '<span style="display:block"> Year: ' + display_extended_attribute(row, 'year') + '</span>'; |
219 |
return display_extended_attribute(row, 'title'); |
219 |
display += '<span style="display:block"> Pages: ' + display_extended_attribute(row, 'pages') + '</span>'; |
220 |
} |
220 |
return display; |
221 |
}, |
|
|
222 |
{ |
223 |
"data": "", // article_title |
224 |
"orderable": false, |
225 |
"render": function(data, type, row, meta) { |
226 |
return display_extended_attribute(row, 'article_title'); |
227 |
} |
228 |
}, |
229 |
{ |
230 |
"data": "", // issue |
231 |
"orderable": false, |
232 |
"render": function(data, type, row, meta) { |
233 |
return display_extended_attribute(row, 'issue'); |
234 |
} |
235 |
}, |
236 |
{ |
237 |
"data": "", // volume |
238 |
"orderable": false, |
239 |
"render": function(data, type, row, meta) { |
240 |
return display_extended_attribute(row, 'volume'); |
241 |
} |
242 |
}, |
243 |
{ |
244 |
"data": "", // year |
245 |
"orderable": false, |
246 |
"render": function(data, type, row, meta) { |
247 |
return display_extended_attribute(row, 'year'); |
248 |
} |
249 |
}, |
250 |
{ |
251 |
"data": "", // pages |
252 |
"orderable": false, |
253 |
"render": function(data, type, row, meta) { |
254 |
return display_extended_attribute(row, 'pages'); |
255 |
} |
221 |
} |
256 |
}, |
222 |
}, |
257 |
{ |
223 |
{ |
258 |
- |
|
|