-
Notifications
You must be signed in to change notification settings - Fork 409
Open
Description
I'm using a data table plugin feature using the devoops invocation code:
function LoadDataTablesScripts(callback){
function LoadDatatables(){
$.getScript('plugins/datatables/jquery.dataTables.js', function(){
$.getScript('plugins/datatables/ZeroClipboard.js', function(){
$.getScript('plugins/datatables/TableTools.js', function(){
$.getScript('plugins/datatables/dataTables.bootstrap.js', callback);
});
});
});
}
if (!$.fn.dataTables){
LoadDatatables();
}
else {
if (callback && typeof(callback) === "function") {
callback();
}
}
}
So, all the JS gets loaded, but the style that comes with the direct download, jquery.dataTables.min.css is not even included in the plugins folder.
Was this done on purpose? overlooked? Can we simply use a get call (not getScript ?) to include the css as well ? I'd like to implement some of the table styles that come with the DT package.
Metadata
Metadata
Assignees
Labels
No labels