Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F108590395
export.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Apr 17, 13:46
Size
2 KB
Mime Type
text/html
Expires
Sat, Apr 19, 13:46 (2 d)
Engine
blob
Format
Raw Data
Handle
25626667
Attached To
R7177 epiph
export.html
View Options
<template name="export">
<div id="export">
<div class="row">
<div class="col-md-4 treeCol">
<div id="tree"></div>
</div>
<div class="col-md-8 contentCol">
<div class="row">
<div class="col-md-12">
<button id="downloadCSV" class="btn btn-primary" disabled={{waitingForDownload}}>
Download CSV
{{#if waitingForDownload}}
<i class="fa fa-spinner fa-spin"></i>
{{else}}
<i class="fa fa-download"></i>
{{/if}}
</button>
<!-- <button id="createExportTable" class="btn btn-primary" disabled={{waitingForExportTable}}>
Create Export Table
{{#if waitingForExportTable}}
<i class="fa fa-spinner fa-spin"></i>
{{else}}
<i class="fa fa-table"></i>
{{/if}}
</button> -->
</div>
</div>
<div class="row">
<div class="col-md-9">
<h3>Table columns</h3>
<table id="table" class="table">
{{#each columnHeaders}}
<tr>
<th>{{title}}</th>
</tr>
{{/each}}
</table>
<!--
<table id="table" class="table">
<tr>
{{#each columnHeaders}}
<th>{{title}}</th>
{{/each}}
</tr>
{{#each rows}}
<tr>
{{#each columns}}
<td>{{this}}</td>
{{/each}}
</tr>
{{/each}}
</table>
-->
</div>
<!-- <div class="col-md-3">
<h3>Export tables</h3>
<table>
{{#each exportTables}}
<tr>
<td>{{name}}</td>
<td>
<button class="btn btn-danger removeExportTable" title="remove">
<i class="fa fa-lg fa-trash"></i>
</button>
</td>
</tr>
{{/each}}
</table>
</div> -->
</div>
</div>
</div>
</div>
</template>
Event Timeline
Log In to Comment