1

What are the CDN fallback expressions for the DataTables script and its extensions? https://cdn.datatables.net

For example (source):

jQuery     -->  window.jQuery
jQuery.UI  -->  window.jQuery.ui
Modernizr  -->  window.Modernizr
Bootstrap  -->  $.fn.modal
Julian Lettner
  • 3,309
  • 7
  • 32
  • 49

1 Answers1

4

You can determine whether jQuery DataTables is available by testing whether $.fn.dataTable exists.

So I assume you need to use:

bundle.CdnFallbackExpression = "$.fn.dataTable";
Gyrocode.com
  • 57,606
  • 14
  • 150
  • 185