Skip to content

Commit

Permalink
HtmlDxDataGrid: Update jsPDF-AutoTable to 3.5.29 (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalberger authored Jun 11, 2023
1 parent 63da659 commit c30e9f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/templates/htmldxdatagrid-demo-exportformat-pdf.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.7.0.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.22/jspdf.plugin.autotable.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.29/jspdf.plugin.autotable.min.js"></script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.2.6/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/22.2.6/css/dx.light.css" />
<script type="text/javascript" src="https://cdn3.devexpress.com/jslib/22.2.6/js/dx.all.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion src/Cake.Issues.Reporting.Generic/HtmlDxDataGridOption.cs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ public enum HtmlDxDataGridOption
/// <summary>
/// Version of <see href="https://github.com/simonbengtsson/jsPDF-AutoTable">jsPDF-AutoTable plugin</see> which should be used.
/// This version needs to match the version required by the selected <see cref="DevExtremeVersion"/>.
/// Default value is <c>3.5.22</c>.
/// Default value is <c>3.5.29</c>.
/// </summary>
JsPdfAutotableVersion,
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
string jsPdfVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "2.5.1").Trim();
string jsPdfAutoTableLocation = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsLocation, "https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/").Trim();
jsPdfAutoTableLocation = jsPdfAutoTableLocation.WithEnding("/");
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "3.5.22").Trim();
string jsPdfAutoTableVersion = ViewBagHelper.ValueOrDefault(ViewBag.FileSaverJsVersion, "3.5.29").Trim();
string devExtremeLocation = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeLocation, "https://cdn3.devexpress.com/jslib/").Trim();
devExtremeLocation = devExtremeLocation.WithEnding("/");
string devExtremeVersion = ViewBagHelper.ValueOrDefault(ViewBag.DevExtremeVersion, "22.2.6").Trim();
Expand Down

0 comments on commit c30e9f8

Please sign in to comment.