Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
Signed-off-by: AndrewPoppe <AndrewBPoppe@gmail.com>
  • Loading branch information
AndrewPoppe committed Aug 15, 2024
1 parent c299504 commit 5dd333a
Show file tree
Hide file tree
Showing 7 changed files with 35 additions and 25 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ information about **REDCapPRO** participants. These are described below:

| Version | Release Date | Description |
| ------- | ------------ | ------------------------------------------------------------------------------------------------------------- |
| 2.6.0 | 2024-08-15 | Feature release - [Release Notes](https://github.com/AndrewPoppe/REDCap-PRO/releases/tag/2.6.0) |
| 2.5.0 | 2024-06-26 | Feature release - [Release Notes](https://github.com/AndrewPoppe/REDCap-PRO/releases/tag/2.5.0) |
| 2.4.1 | 2024-06-13 | Critical Bug fix - [Release Notes](https://github.com/AndrewPoppe/REDCap-PRO/releases/tag/2.4.1) |
| 2.4.0 | 2023-12-01 | Feature release - [Release Notes](https://github.com/AndrewPoppe/REDCap-PRO/releases/tag/2.4.0) |
Expand Down
Binary file modified images/screenshots/cc_logs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/screenshots/cc_participants.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/screenshots/cc_projects.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/screenshots/cc_staff.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified images/screenshots/logs.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
59 changes: 34 additions & 25 deletions src/cc_logs.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,34 +122,43 @@ className: "dt-center"
},
colReorder: false,
buttons: [
'colvis',
{
text: 'Restore Default',
action: function (e, dt, node, config) {
dt.state.clear();
window.location.reload();
}
},
{
extend: 'csv',
exportOptions: {
columns: ':visible'
{
extend: 'colvis',
className: 'btn btn-primaryrc btn-sm'
},
customize: function (csv) {
logExport("csv");
return csv;
}
},
{
extend: 'excel',
exportOptions: {
columns: ':visible'
'spacer',
{
text: 'Restore Default',
action: function (e, dt, node, config) {
dt.state.clear();
window.location.reload();
},
className: 'btn btn-secondary btn-sm'
},
'spacer',
{
extend: 'csv',
exportOptions: {
columns: ':visible'
},
customize: function (csv) {
logExport("csv");
return csv;
},
className: 'btn btn-success btn-sm'
},
customize: function (excel) {
logExport("excel");
return excel;
'spacer',
{
extend: 'excel',
exportOptions: {
columns: ':visible'
},
customize: function (excel) {
logExport("excel");
return excel;
},
className: 'btn btn-success btn-sm'
}
},
],
scrollX: true,
scrollY: '60vh',
Expand Down

0 comments on commit 5dd333a

Please sign in to comment.