Meteor-tabular with Buttons extension not exporting Blaze Template columns

I am using the meteor-tabular extension to generate data tables along with Blaze templates for most of the cells.

Example…

    {
      data: "expenseDate",
      title: "Expense Date",
      tmpl: Meteor.isClient && Template.dateCell
    },

I am also using the DataTables Buttons extension in order to export the data from the tables.

Problem is, when I use a Blaze template for a cell, even though the data renders correctly on the table, it doesn’t get exported when using the export buttons.

I can totally understand why this is happening as technically, you could put anything into a cell if you are using a template but is there any way that a specific field could be specified for exporting purposes only?

Anyone know a solution to this?