|
Lines 15-21
$(document).ready(function() {
Link Here
|
| 15 |
"sDom": "rt", |
15 |
"sDom": "rt", |
| 16 |
"columns": [ |
16 |
"columns": [ |
| 17 |
{ |
17 |
{ |
| 18 |
"mDataProp": "reservedate_formatted" |
18 |
"data": { _: "reservedate_formatted", "sort": "reservedate" } |
| 19 |
}, |
19 |
}, |
| 20 |
{ |
20 |
{ |
| 21 |
"mDataProp": function ( oObj ) { |
21 |
"mDataProp": function ( oObj ) { |
|
Lines 91-97
$(document).ready(function() {
Link Here
|
| 91 |
else { return oObj.branchcode.escapeHtml() || ""; } |
91 |
else { return oObj.branchcode.escapeHtml() || ""; } |
| 92 |
} |
92 |
} |
| 93 |
}, |
93 |
}, |
| 94 |
{ "mDataProp": "expirationdate_formatted" }, |
94 |
{ "data": { _: "expirationdate_formatted", "sort": "expirationdate" } }, |
| 95 |
{ |
95 |
{ |
| 96 |
"mDataProp": function( oObj ) { |
96 |
"mDataProp": function( oObj ) { |
| 97 |
if ( oObj.priority && parseInt( oObj.priority ) && parseInt( oObj.priority ) > 0 ) { |
97 |
if ( oObj.priority && parseInt( oObj.priority ) && parseInt( oObj.priority ) > 0 ) { |
| 98 |
- |
|
|