Skip to content

Commit

Permalink
Fix Steward Assignments Sort Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoff Humphrey committed Jan 29, 2019
1 parent 404f14a commit b07b94e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion output/assignments.output.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,13 @@
"sDom": 'rt',
"bStateSave" : false,
"bLengthChange" : false,

<?php if (($view == "default") || ($view == "name")) { ?>
"aaSorting": [[0,'asc'],[2,'asc'],[5,'asc']],
<?php if ($filter == "J") { ?>
"aaSorting": [[0,'asc'],[3,'asc'],[5,'asc']],
<?php } else { ?>
"aaSorting": [[0,'asc'],[2,'asc'],[4,'asc']],
<?php } ?>
<?php } ?>

<?php if ($view == "table") { ?>
Expand Down

0 comments on commit b07b94e

Please sign in to comment.