Export to Excel XLSX. Does work, but does not export all fields yet correctly. In Progress.

Thanks to gameendman, alfredgu and xet7 !

Related #3173
This commit is contained in:
Lauri Ojansivu 2021-01-19 14:22:17 +02:00
parent 815b32c9b6
commit 855151a8d1
8 changed files with 1009 additions and 12 deletions

View file

@ -85,14 +85,14 @@ function initSortable(boardComponent, $listsDom) {
},
});
function userIsMember() {
return (
Meteor.user() &&
Meteor.user().isBoardMember() &&
!Meteor.user().isCommentOnly() &&
!Meteor.user().isWorker()
);
}
//function userIsMember() {
// return (
// Meteor.user() &&
// Meteor.user().isBoardMember() &&
// !Meteor.user().isCommentOnly() &&
// !Meteor.user().isWorker()
// );
//}
boardComponent.autorun(() => {
let showDesktopDragHandles = false;