ThemeRoller with Internationalisation

ThemeRoller with Internationalisation

darotucdarotuc Posts: 2Questions: 0Answers: 0
edited November 2010 in General
Hi! Maybe this is a newbie question but.. how can I use jQuery UI and Internationalisation at the same time? All the expamples I saw, use either ThemeRoller or Internationalisation, but not both. I tried several options, but I get this error: DataTables warning (table id = 'ordenable'): Cannot reinitialise DataTable.

My code is something like this:
[code]
$(document).ready(function() {
oTable = $('#ordenable').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});

$('#ordenable').dataTable( {
"oLanguage": {
"sLengthMenu": "Mostrar _MENU_ registros por p

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    Just combine the two together :-)

    [code]
    $(document).ready(function() {
    oTable = $('#ordenable').dataTable({
    "bJQueryUI": true,
    "sPaginationType": "full_numbers",
    "oLanguage": {
    "sLengthMenu": "Mostrar _MENU_ registros por p
  • darotucdarotuc Posts: 2Questions: 0Answers: 0
    Thank you ver much!!! ^^
This discussion has been closed.