File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
docs/input/documentation/report-formats/generic/templates
src/Cake.Issues.Reporting.Generic Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
< script type ="text/javascript " src ="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.7.1.min.js "> </ script >
13
13
< script type ="text/javascript " src ="https://cdnjs.cloudflare.com/ajax/libs/jspdf/3.0.1/jspdf.umd.min.js "> </ script >
14
- < script type ="text/javascript " src ="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.8.4 /jspdf.plugin.autotable.min.js "> </ script >
14
+ < script type ="text/javascript " src ="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/5.0.2 /jspdf.plugin.autotable.min.js "> </ script >
15
15
< link rel ="stylesheet " type ="text/css " href ="https://cdn3.devexpress.com/jslib/23.1.13/css/dx.common.css " />
16
16
< link rel ="stylesheet " type ="text/css " href ="https://cdn3.devexpress.com/jslib/23.1.13/css/dx.light.css " />
17
17
< script type ="text/javascript " src ="https://cdn3.devexpress.com/jslib/23.1.13/js/dx.all.js "> </ script >
Original file line number Diff line number Diff line change @@ -489,7 +489,7 @@ public enum HtmlDxDataGridOption
489
489
/// <summary>
490
490
/// Version of <see href="https://github.com/simonbengtsson/jsPDF-AutoTable">jsPDF-AutoTable plugin</see> which should be used.
491
491
/// This version needs to match the version required by the selected <see cref="DevExtremeVersion"/>.
492
- /// Default value is <c>3.8.4 </c>.
492
+ /// Default value is <c>5.0.2 </c>.
493
493
/// </summary>
494
494
JsPdfAutotableVersion ,
495
495
Original file line number Diff line number Diff line change 79
79
string jsPdfVersion = ViewBagHelper .ValueOrDefault (ViewBag .JsPdfVersion , " 3.0.1" ).Trim ();
80
80
string jsPdfAutoTableLocation = ViewBagHelper .ValueOrDefault (ViewBag .FileSaverJsLocation , " https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/" ).Trim ();
81
81
jsPdfAutoTableLocation = jsPdfAutoTableLocation .WithEnding (" /" );
82
- string jsPdfAutoTableVersion = ViewBagHelper .ValueOrDefault (ViewBag .JsPdfAutoTableVersion , " 3.8.4 " ).Trim ();
82
+ string jsPdfAutoTableVersion = ViewBagHelper .ValueOrDefault (ViewBag .JsPdfAutoTableVersion , " 5.0.2 " ).Trim ();
83
83
string devExtremeLocation = ViewBagHelper .ValueOrDefault (ViewBag .DevExtremeLocation , " https://cdn3.devexpress.com/jslib/" ).Trim ();
84
84
devExtremeLocation = devExtremeLocation .WithEnding (" /" );
85
85
string devExtremeVersion = ViewBagHelper .ValueOrDefault (ViewBag .DevExtremeVersion , " 23.1.13" ).Trim ();
You can’t perform that action at this time.
0 commit comments