JQuery UI 1.8 Themes
JQuery UI 1.8 Themes
Has this been tested with the jquery-ui 1.8 themes? I'm getting some odd look and feel, but I'm not sure if that is because of something I've done incorrectly, or if it isn't quite compatible with the 1.8 themes. If anyone has tried this, I'd love to hear about your experiences.
This discussion has been closed.
Replies
Regards,
Allan
With the code below, I noticed that sorting by clic on the table header don't work.
[code] /* Table : initialisation*/
oTable = $('#ListeDesClients').dataTable({
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "ajax/processMesClientsListe.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
$.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
},
"bStateSave": false,
"bJQueryUI": true,
"bAutoWidth": false,
"sPaginationType": "full_numbers",
"oLanguage": {"sUrl": "css/dataTables-1.6.2/fr_FR.txt"},
"aoColumns": [
/* ID Personne */ { "bSearchable": false,"bVisible": false },
/* NPAI */ { "bSearchable": false,
"fnRender": function(obj) {
var sReturn = obj.aData[ obj.iDataColumn ];
if ( sReturn == "1" ) {
sReturn="";
}else
{
sReturn="";
};
return sReturn;
}
},
/* Civilite */ { "bSearchable": false},
/* Prenom */ null,
/* Nom */ null,
/* Adresse */ null,
/* Code Postal */ null,
/* Ville */ null,
/* Pays */ null,
/* T
Only a json format problem caused by addslashes(php) on process server side.
thx.