mod - processing goes rounded in FF
mod - processing goes rounded in FF
i changed this line [code]nProcessing.className = oSettings.oClasses.sProcessing;[/code]
to this [code]nProcessing.className = oSettings.oClasses.sProcessing + " ui-corner-tl ui-corner-tr ui-corner-bl ui-corner-br";[/code]
it takes the processing to rounded corners in FF
can be helpfull for somebody... who wants nicer processing :)
to this [code]nProcessing.className = oSettings.oClasses.sProcessing + " ui-corner-tl ui-corner-tr ui-corner-bl ui-corner-br";[/code]
it takes the processing to rounded corners in FF
can be helpfull for somebody... who wants nicer processing :)
This discussion has been closed.
Replies
Nice effect :-).
This is the reason that the classes in DataTables are all modifiable. There is no need to change the core distribution code to modify the classes: http://datatables.net/styling/custom_classes
For example in this case you could use: $.fn.dataTableExt.oClasses = "dataTables_processing ui-corner-tl ui-corner-tr ui-corner-bl ui-corner-br";
Regards,
Allan