Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

export all data without displaying it on the site #6

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions AspNetCoreServerSide/Controllers/HomeController.cs
Original file line number Diff line number Diff line change
@@ -78,11 +78,12 @@ public async Task<IActionResult> LoadTable([FromBody]JqueryDataTablesParameters
}
}

public async Task<IActionResult> GetExcel()
public async Task<IActionResult> GetExcel(bool displayedDataOnly)
{
var param = HttpContext.Session.GetString(nameof(JqueryDataTablesParameters));

var results = await _demoService.GetDataAsync(JsonSerializer.Deserialize<JqueryDataTablesParameters>(param));
var _param = JsonSerializer.Deserialize<JqueryDataTablesParameters>(param);
_param.Length = displayedDataOnly ? _param.Length : -1;
var results = await _demoService.GetDataAsync(_param);
return new JqueryDataTablesExcelResult<DemoExcel>(_mapper.Map<List<DemoExcel>>(results.Items), "Demo Sheet Name", "Fingers10");
}

26 changes: 24 additions & 2 deletions AspNetCoreServerSide/wwwroot/js/app.js
Original file line number Diff line number Diff line change
@@ -97,14 +97,36 @@ $(() => {
buttons: [
{
text: 'Export to Excel',
className: 'btn btn-sm btn-dark',
className: 'btn btn-sm btn-dark btn-export-excel',
action: function (e, dt, node, config) {
window.location.href = "/Home/GetExcel";
var t = e.target;
var $checkbox = $('#displayedDataOnly');
var displayedDataOnly = $checkbox.val();
if (t.nodeName !== 'BUTTON') {
e.preventDefault();
if (displayedDataOnly === 'true') {
$checkbox.prop("checked", false);
displayedDataOnly = $checkbox.val('false');
}
else {
$checkbox.prop("checked", true);
displayedDataOnly = $checkbox.val('true');
}

return;
}
else
window.location.href = `/Home/GetExcel?displayedDataOnly=${displayedDataOnly}`;
},
init: function (api, node, config) {
$(node).removeClass('dt-button');
$(node).html(`Export to Excel <div class="form-check form-check-inline" style="display:inline-flex; margin:0;background: goldenrod;">
<input style="cursor: pointer;" class="form-check-input" type="checkbox" id="displayedDataOnly" value="true" checked="checked">
<label style="cursor: pointer;" class="form-check-label" for="displayedDataOnly">displayed data only</label>
</div>`)
}
},

{
text: 'Create',
className: 'btn btn-sm btn-success',