You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
The text was updated successfully, but these errors were encountered:
Update, I see that DT says don't use their css when using bootstrap. I simply brought in the classes from their css file to the devoops.css file, altering them slightly to match the BS naming convention:
I'm using a data table plugin feature using the devoops invocation code:
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.
The text was updated successfully, but these errors were encountered: