TableReportView swrLaunchCell Issue

Can anyone tell me why this isn't working? It shows the column for the subreport but does nothing when I click on it. I'm running it in a Webreport with the destination set to HTML WebReport.

<script>
csui.require(['csui/lib/marionette', 'csui/utils/contexts/page/page.context', 'webreports/controls/table.report/table.report.view'], function (Marionette, PageContext, TableReportView) {

var contentRegion = new Marionette.Region({el: '#content'}),
pageContext = new PageContext(),
tableReportView,
options;

options = {
context: pageContext,
data: {
id: 289994,
title: 'Review Dashboard',
header: true,
titleBarIcon: 'mime_workflow_status',
columnsWithSearch: ['Name', 'InitiatedBy'],
sortBy: 'Name',
sortOrder: 'desc',
pageSize: 30,
swrLaunchCell: {
id: 289596,
iconClass: 'assignment-workflow',
hoverText: 'View Details.'
}
}
};

tableReportView = new TableReportView(options);
contentRegion.show(tableReportView);
pageContext.fetch();

});
</script><div id="content"></div>