mod - processing goes rounded in FF

mod - processing goes rounded in FF

sanyikasanyika Posts: 2Questions: 0Answers: 0
edited December 2009 in General
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 :)

Replies

  • allanallan Posts: 61,822Questions: 1Answers: 10,127 Site admin
    Hi sanyika,

    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
This discussion has been closed.