Missing Previous & Next in bJQueryUI
Missing Previous & Next in bJQueryUI
First, I absolutely love the power of this program and all the support and flexibility! You are making me look super smart here at my work on our internal website, even after I showed my coworkers where I got the functionality.
Probably a newbie miss, but I'm using datatables 1.9.4 with a jquery 1.8.23 custom theme.
pagination arrow icons show up, but not the "Previous" and "Next", as in the default, no-theme configuration.
I've tried adding css for fg-button, messing with the oLanguage, but nothing seems to make the words appear.
What stupid thing am I missing?
Thanks!
Probably a newbie miss, but I'm using datatables 1.9.4 with a jquery 1.8.23 custom theme.
pagination arrow icons show up, but not the "Previous" and "Next", as in the default, no-theme configuration.
I've tried adding css for fg-button, messing with the oLanguage, but nothing seems to make the words appear.
What stupid thing am I missing?
Thanks!
This discussion has been closed.
Replies
From my html:
var oTable = $('#retTable').dataTable( {
"aoColumnDefs": [
{ "bSortable": false, "aTargets": [ 0 ] },
{ "bSearchable": true, "bVisible": false, "aTargets": [ 11 ] }
],
"aaSorting": [[1, 'asc']],
"bJQueryUI": true,
"oLanguage": {
"sSearch":"Search all Content:",
"sPrevious": "Prev",
"sNext": "Next"
},
"iDisplayLength": 25,
"sDom": 'C<"clear">R<"H"Tfr>t<"F"ip>',
"oColReorder": { "iFixedColumns": 1 }
});
My CSS has includes for:
the data_table_jui.css
jqueryui_pepper-grinder.custom.css
and all the appropriate .js includes as well.
Functionality for every component is working as expected. I'm just missing the text.
Thanks again.