Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter mushki

    (@mushki)

    Heres how I solved my problem
    as MyThirdEye mentioned in “jtrt-responsive-tables-public.js” file, put the language: {} (its right after line 114 in the version i use) inside the code like this:

    var jtrtDTcopy = mytablr.DataTable({
    					"paging":isPaged,
    					"ordering":isSorted,
    					"searching":isfiltered,
    					"info":false,
    language: { 
    
        lengthMenu:     "Show _MENU_ entries",
        search:         "Search:",
        paginate: {
            next:       "Next",
            previous:   "Previous"}
    }
    				});

    here you can find all strings you can translate in the table:
    https://datatables.net/reference/option/language

    • This reply was modified 9 years, 5 months ago by mushki.
    • This reply was modified 9 years, 5 months ago by mushki.
Viewing 1 replies (of 1 total)